凡事都有個開頭;有句話說,萬事開頭難;不管以後的路怎麼樣,走好腳下的每一步。
今天接觸到了Unix shell中的函數,記錄下,寫了個hello函數,如下:
pg fun_hello.sh
#!/bin/ksh
hello () {
echo "Hello ,this is my first Shell function!"
echo "Today is `date +%Y-%m-%d\ %H:%S:%M\ %A`"
}
#Call hello function
hello
#EOF
執行腳本:
sh fun_hello.sh
Hello ,this is my first Shell function!
Today is 2013-02-01 15:48:25 Friday
Unix Date命令 http://www.linuxidc.com/Linux/2013-02/78923.htm
--the end--