ranlib.csh

来自「大师写的二代小波经典之作」· CSH 代码 · 共 20 行

CSH
20
字号
#!/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 ""

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?