在SHELL脚本里看到 if [ $# -lt 7 ]; then ,请高手详细解释?

前面有7个参数,下面使用了这个if语句,初学shell,请高手详细解释一下,万分感激if[$#-lt7];thenecho-e"\033[47;35mUsage:$0su... 前面有7个参数,下面使用了这个if 语句,初学shell,请高手详细解释一下,万分感激
if [ $# -lt 7 ];
then
echo -e "\033[47;35m Usage: $0 subject analysis_dir anat_name anat_dir_name sanlm_denoised num_scans gcut \033[0m"
exit
fi
展开
 我来答
百度网友5311d79
2013-07-24 · TA获得超过1.9万个赞
知道大有可为答主
回答量:6356
采纳率:71%
帮助的人:3196万
展开全部

$# 取得shell脚本参数个数,

-lt  即 less than,小于,

$0 取得脚本名称(包含路径)

  

若判断参数个数小于7个,则用echo打印正确的使用方法,并用exit退出脚本。

Usage: 脚本名称 subject analysis_dir anat_name anat_dir_name sanlm_denoised num_scans gcut

后面分别是7个参数。

 

其实,通常用 `basename $0` 来去除路径得到纯粹的脚本名,并且在退出脚本时将返回状态置为非0。

 

if [ $# -lt 7 ];
then
    echo -e "\n Usage: `basename $0` subject analysis_dir anat_name anat_dir_name sanlm_denoised num_scans gcut \n"
    exit 1
fi
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式