?? example14.22
字號:
if [ "$name" = "" ] # Alternative to [ ! "$name" ] # or [ -z "$name" ]then echo The name variable is nullfi# (From System showmount program, which displays all remotely mounted systems)remotes=$(/usr/sbin/showmount)if [ "X${remotes}" != "X" ] then /usr/sbin/wall ${remotes} # ...fi
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -