在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 展开
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 展开
1个回答
展开全部
$# 取得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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |