⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ranlib.csh

📁 大师写的二代小波经典之作
💻 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 + -