gpt4 book ai didi

linux - rc.d 脚本默认给出 "start"参数?

转载 作者:太空宇宙 更新时间:2023-11-04 05:41:42 25 4
gpt4 key购买 nike

我的目标是创建一个 bash 脚本服务,在运行级别为 5 时创建一个文件,并在运行级别为 3 时删除该文件。

我遇到的问题是当我到达运行级别 3 时。我得到:

The current lvl is : 3 and number of arguments is : 1 I am at line 10. The command is start

为什么它开始争论而我没有通过任何争论。
函数start用于创建文件,函数stop用于删除文件,它们工作正常
如果我删除参数数量的测试条件并让脚本在 lvl 3 时删除文件,我可以使脚本正常工作

但是它告诉我参数的数量是 1 并且它开始的事情并没有进入我的脑海。我已经做了很多研究,但没有找到任何解决方案。

#! /bin/bash
# chkconfig: 35 99 01
# description : some startup script

#### Constants
FILE="/home/ayadi/Desktop/inittp"
CURRENT_LVL="$(runlevel | awk '{print $2}')"
echo "The current lvl is : $CURRENT_LVL and number of arguments is : $# "
echo "I am at line 10 . The command is $1"

#### Functions
start(){
if ! [[ -f "$FILE" ]];
then
touch "$FILE"
echo "File Created..."
else
echo "File Does Exist..."
fi
}
stop(){
if [[ -f "$FILE" ]];
then
rm "$FILE"
echo "File Deleted..."
else
echo "File Does Not Exist..."
fi
}

#### Main

if [ $# -eq 0 ]
then
echo "Entred the arguments -eq 0"
if [ "$CURRENT_LVL" == "5" ]
then
echo "Entred the if current lvl 5 statement"
start
fi
if [ "$CURRENT_LVL" == "3" ]
then
echo "Entred the if current lvl 3 statement"
stop
fi

else

case "$1" in
[sS][tT][aA][rR][tT])
if ! ([ -e "$FILE" ])
then
echo "I am the case statement.the command is $1"
start
fi
;;
[sS][tT][oO][pP])
if [ -e "$FILE" ]
then
stop
fi
;;
*)
echo "Please enter start or stop"
;;
esac

fi

最佳答案

调试建议,从此更改:

echo "The current lvl is : $CURRENT_LVL and number of arguments is : $# "
echo "I am at line 10 . The command is $1"

对此:

echo "The current lvl is : $CURRENT_LVL and number of arguments is : $# "
echo "I am at line 10 . The command is \"$1\", the whole command line is \"$0 $@\""

这不会解决问题,但会提供有关实际情况的更多信息。

<小时/>

#Main 可以简化。它不会解决任何问题,但它会让我们更容易思考:

#### Main

case "${1,,}" in
"") echo "Entered no arguments."
case "$CURRENT_LVL" in
3|5) echo "Entered the if current level ${CURRENT_LVL} statement" ;;&
5) start ;;
3) stop ;;
esac ;;

start) if ! [ -e "$FILE" ] ; then
echo "I am the case statement.the command is $1"
start
fi ;;

stop) [ -e "$FILE" ] && stop ;;

*) echo "Please enter start or stop" ;;
esac

注意bash主义${1,,} 返回小写的 $1;;& 下降到下一个 case 测试,而不是跳转到 ecase

关于linux - rc.d 脚本默认给出 "start"参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52808004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com