blog:個人
目錄日常執行指令碼的時候,時間久了不知道指令碼的作用和實行了哪些功能,需要重新看指令碼原始碼。因此,需要對指令碼做一下輸出幫助。
格式參考:
###
### my-script — does one thing well
###### usage:
### my-script ###
### options:
### input file to read.
### output file to write. use '-' for stdout.
### -h show this message.
help()
if [[ $# == 0 ]] || [[ "$1" == "-h" ]]; then
help
exit 1
fi
sed -rn 's/^### ?//;t;p' "$0"
說明:
執行script.sh -h
:
[root@test ~]# ./aa.sh -h
my-script — does one thing well
usage:
my-script options:
input file to read.
output file to write. use '-' for stdout.
-h show this message.
python輸出函式幫助 python幫助函式
一些幫助函式 2015年8月9日 14 09 exec print hello,world exec是乙個函式,而不是乙個語句。exec最有用的乙個部分 給它提供命名空間,可放置變數的地方。他能動態地建立 字串。如果字串是從其他地方獲得的,為安全起見,可增加乙個字典,起到命名空間的作用。命名空間 可...
shell 輸入與輸出
一 echo 一般形式 echo string 常用命令 c 不換行 注 在linux 下必須使用 n 例如 echo e n what is your name c read name f 進紙 t 跳格 n 換行在 linux 下,使用 e 才能使轉移字元生效 如 1.echo e hello ...
shell輸出的儲存
想在shell中把乙個命令的輸出儲存在乙個變數中,這樣就可以一次呼叫,多次使用結果。但出現麻煩了。比如想統計某一時刻網口資料報收發的情況,用ifconfig grep過濾需要分別兩次,但此時rxtx都已經改變。如果用outbuf ifconfig 儲存你會發現echo outbuf變成這樣了 eth...