顯示具有 shellscript 標籤的文章。 顯示所有文章
顯示具有 shellscript 標籤的文章。 顯示所有文章

2011年8月4日 星期四

如何一次讀取script的所有參數

你可以使用$@

$1得到第一個輸入參數
$2得到第二個輸入參數

你想要得到所有的
$@
@ 可以想成all
應該就會很好理解

Reference:
http://www.twbsd.org/cht/book/ch24.htm

透過Facebook分享

2011年3月24日 星期四

[shellscript] 檢查檔案是否存在

檢查zero.bin檔案是否存在
存在,印出file exist到螢幕上
不存在, 印出file not exist到螢幕上



檢查目錄則是
test -d

Reference:
http://linux.vbird.org/linux_basic/0340bashshell-scripts.php

透過Facebook分享