?? ranlib.csh
字號(hào):
#!/bin/csh -f## tests to see if the program 'ranlib' exists. If it does, runs ranlib on# the first argument (a library name). Otherwise, does nothing, and returns#echo "executing 'ranlib $1'..."# Is there a ranlib? Let's try and then suffer the consequences...set haveranlib = `ranlib $1 >& /dev/null`if ( $status ) then echo "There doesn't seem to be a ranlib on this system..." echo "Don't worry about it."endifecho ""#echo ""
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -