10個工具讓你的 shell 腳本更強大

openkk 12年前發布 | 93K 次閱讀 Shell

10個工具讓你的 shell 腳本更強大 很多人誤以為shell腳本只能在命令行下使用。其實shell也可以調用一些GUI組件,例如菜單,警告框,進度條等等。你可以控制最終的輸出,光標位置還有各種輸出效果。下面我將介紹一些工具,幫助你創建強大的,互動的,用戶友好的 Unix/Linux shell腳本。我在FreeBSD和Linux下測試過這些工具,不過其他UNIX系列的操作系統應該都支持的。

1. notify-send 命令
這個命令可以讓你通過通知進程發送一個桌面通知給用戶。這可以用來向用戶發送提示,或者顯示一些信息而不用打斷用戶工作。你需要安裝如下軟件包:

$ sudo apt-get install libnotify-bin
下面這個例子展示了如何從命令行向桌面發送一個簡單的消息:
notify-send "rsnapshot done :)" 
輸出:
10個工具讓你的 shell 腳本更強大

下面是一個復雜一點的例子:
....
alert=18000
live=$(lynx --dump http://money.rediff.com/ | grep 'BSE LIVE' | awk '{ print $5}' | sed 's/,//g;s/\.[0-9]*//g')
[ $notify_counter -eq 0 ] && [ $live -ge $alert ] && { notify-send -t 5000 -u low -i   "BSE Sensex touched 18k";  notify_counter=1; }
...
輸出:
10個工具讓你的 shell 腳本更強大

這里的參數解釋如下:
  •  -t 5000:指定超時的時間,毫秒
  •  -u low:設置是否緊急
  •  -i gtk-dialog-info:通知圖標,你可以指定圖標 -i /path/to/your-icon.png

2. tput 命令
這個命令是用來設置終端特性的:
  •   移動光標
  •   獲得終端信息
  •   設置前景和背景色
  •   設置粗體模式
  •   設置反模式等等
舉例:
#!/bin/bash

# clear the screen
tput clear

# Move cursor to screen location X,Y (top left is 0,0)
tput cup 3 15

# Set a foreground colour using ANSI escape
tput setaf 3
echo "XYX Corp LTD."
tput sgr0

tput cup 5 17
# Set reverse video mode
tput rev
echo "M A I N - M E N U"
tput sgr0

tput cup 7 15
echo "1. User Management"

tput cup 8 15
echo "2. Service Management"


tput cup 9 15
echo "3. Process Management"

tput cup 10 15
echo "4. Backup"

# Set bold mode
tput bold
tput cup 12 15
read -p "Enter your choice [1-4] " choice

tput clear
tput sgr0
tput rc
輸出:
10個工具讓你的 shell 腳本更強大

3. setleds 命令
這個命令可以讓你控制鍵盤燈,例如打開數字鍵盤燈:
setleds -D +num
關閉數字鍵盤燈:
setleds -D -num
  •   -caps: 清除大寫燈
  •   +caps:打開大寫燈
  •   -scroll:清除滾動鎖
  •   +scroll:打開滾動鎖

4. zenity 命令
這個命令可以顯示GTK+的對話框,然后返回用戶的輸入。你可以用這個命令在腳本中顯示信息,并要求用戶輸入信息。下面這段代碼就是域名的whois查詢:
#!/bin/bash
# Get domain name
_zenity="/usr/bin/zenity"
_out="/tmp/whois.output.$$"
domain=$(${_zenity} --title  "Enter domain" \
                --entry --text "Enter the domain you would like to see whois info" )

if [ $? -eq 0 ]
then
  # Display a progress dialog while searching whois database
  whois $domain  | tee >(${_zenity} --width=200 --height=100 \
                      --title="whois" --progress \
                        --pulsate --text="Searching domain info..." \
                                    --auto-kill --auto-close \
                                    --percentage=10) >${_out}

  # Display back output
  ${_zenity} --width=800 --height=600  \
         --title "Whois info for $domain" \
         --text-info --filename="${_out}"

else
  ${_zenity} --error \
         --text="No input provided"
fi
輸出:

10個工具讓你的 shell 腳本更強大

5. kdialog 命令
這個命令和zenity很想,只不過它是為KDE/QT應用準備的。使用方法如下:
kdialog --dontagain myscript:nofilemsg --msgbox "File: '~/.backup/config' not found."
輸出
10個工具讓你的 shell 腳本更強大

你可以查看 shell scription with KDE Dialogs 來獲取更多信息

6. Dialog
這個命令可以在shell腳本中顯示文本組件。它使用了curses和ncurses類庫。示例代碼:
>#!/bin/bash
dialog --title "Delete file" \
--backtitle "Linux Shell Script Tutorial Example" \
--yesno "Are you sure you want to permanently delete \"/tmp/foo.txt\"?" 7 60

# Get exit status
# 0 means user hit [yes] button.
# 1 means user hit [no] button.
# 255 means user hit [Esc] key.
response=$?
case $response in
   0) echo "File deleted.";;
   1) echo "File not deleted.";;
   255) echo "[ESC] key pressed.";;
esac
7. logger 命令
這個命令可以讓你寫入系統日志例如 /var/log/messages:
logger "MySQL database backup failed."
tail -f /var/log/messages
logger -t mysqld -p daemon.error "Database Server failed"
tail -f /var/log/syslog
輸出:
Apr 20 00:11:45 vivek-desktop kernel: [38600.515354] CPU0: Temperature/speed normal
Apr 20 00:12:20 vivek-desktop mysqld: Database Server failed

8. setterm 命令
這個命令可以設置中斷的屬性。下面的例子是強制屏幕全黑15分鐘,并且60分鐘后把顯示器設為待機狀態:
setterm -blank 15 -powersave powerdown -powerdown 60
下面這段命令可以在中斷顯示加下劃線的文字:
setterm -underline on;
echo "Add Your Important Message Here"

setterm -underline off
或者你可以關閉光標:
setterm -cursor off
9. smbclient:向 MS-Windows 系統發送消息
smbclient可以和 SMB/CIFS服務器通信。它可以向MS-Windows系統的指定用戶發送消息:
smbclient -M WinXPPro < 或者 


  
echo "${Message}" | smbclient -M salesguy2
10. Bash Socket 編程
你可以在bash中開啟一個socket鏈接,并且傳輸數據。Bash有兩個特殊的設備文件:
  •   /dev/tcp/host/port - 如果hostname,和port是合法的話,bash會嘗試開啟一個TCP連接。
  •   /dev/udp/host/port - 如果hostname和port是合法的話,bash會開啟一個UDP連接。
 
你可以利用這個技術來測試一臺主機的端口是否是開啟的,而不需要使用nmap或者port掃描器:
# find out if TCP port 25 open or not
(echo >/dev/tcp/localhost/25) &>/dev/null && echo "TCP port 25 open" || echo "TCP port 25 close"
你可以 使用循環來查找開著的端口
echo "Scanning TCP ports..."

for p in {1..1023}
do
  (echo >/dev/tcp/localhost/$p) >/dev/null 2>&1 && echo "$p open"
done
輸出:
Scanning TCP ports...
22 open
53 open
80 open
139 open
445 open
631 open

下面的這個例子讓你的腳本扮演HTTP客戶端:
#!/bin/bash
exec 3<> /dev/tcp/${1:-www.cyberciti.biz}/80

printf "GET / HTTP/1.0\r\n" >&3
printf "Accept: text/html, text/plain\r\n" >&3
printf "Accept-Language: en\r\n" >&3
printf "User-Agent: nixCraft_BashScript v.%s\r\n" "${BASH_VERSION}"   >&3
printf "\r\n" >&3

while read LINE <&3
do
   # do something on $LINE
   # or send $LINE to grep or awk for grabbing data
   # or simply display back data with echo command
   echo $LINE
done
關于GUITools和Cronjob
如果你使用cronjob來調用你的腳本的話,你要通過“ export DISPLAY=[user's machine]:0 ”命令來設置本地的 display/input 服務。例如調用 /home/vivek/scripts/monitor.stock.sh腳本,它使用了 zenity 工具:
@hourly DISPLAY=:0.0 /home/vivek/scripts/monitor.stock.sh

所有的命令你都可以通過“man”來查詢詳細的使用方式。
 本文由用戶 openkk 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!