Kanru’s 探險日誌

這裡應該會放一些我每日遊覽的站台及一些心得,就當作是我的學習筆記吧^^。

Zenity - 對話框產生器

without comments

zenity 這東西真的很好用,可以快速產生一些有用的 dialog,像是為了快速在網路上抓一些 0rz 的謎物,以下 script 就很方便 :p

#!/bin/sh
URL="http://0rz.tw/"
NUM=`zenity --entry --text $URL`
if [ $NUM != "" ]; then
    wget -P ~/Desktop $URL$NUM 2>&1 | \
    sed -u 's/.*\ \([0-9]\+%\)\ \+\([0-9.]\+\ [KMB\/s]\+\)$/\1\n# Downloading \2/' | \
    zenity --progress --title="Downloading File..." --auto-close
fi

Written by Kanru Chen

October 18th, 2007 at 10:45 am

Posted in 小工具, 爬網探險

Leave a Reply