📄 ranlib.csh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -