千家信息网

linux arguments variables usage

发表于:2024-12-12 作者:千家信息网编辑
千家信息网最后更新 2024年12月12日,#! /bin/bashif [ $# -ne 1 ];thenecho "please input one argument:"exit 1fiif [ $1 -eq 1 ];thenecho "y
千家信息网最后更新 2024年12月12日linux arguments variables usage

#! /bin/bash
if [ $# -ne 1 ];then
echo "please input one argument:"
exit 1
fi

if [ $1 -eq 1 ];then
echo "you input is $1."
elif [ $1 -eq 2 ];then
echo "you input is $1."
else
echo "you input is wrong."
exit 2
fi

0