shell脚本文件的执行
写了个脚本文件test.sh#!/bin/bashecho-e"Pleaseinputtwonumber:"read-p"first:"firstread-p"secon...
写了个脚本文件test.sh
#!/bin/bash
echo -e "Please input two number:"
read -p "first:" first
read -p "second:" second
declare -i total=$first*$second
echo -e "the result of $first x $second ==> $total"
执行该脚本文件bash test.sh,source test.sh都可以正常运行
但是sh test.sh,dash test.sh却不能正常运行,显示declare not found,这是怎么回事呢?请大家帮帮忙,帮我解答一下 展开
#!/bin/bash
echo -e "Please input two number:"
read -p "first:" first
read -p "second:" second
declare -i total=$first*$second
echo -e "the result of $first x $second ==> $total"
执行该脚本文件bash test.sh,source test.sh都可以正常运行
但是sh test.sh,dash test.sh却不能正常运行,显示declare not found,这是怎么回事呢?请大家帮帮忙,帮我解答一下 展开
2个回答
展开全部
脚本文件实际上都需要shell来解释执行。
sh 、dash 和 bash分别是三种shell,大部分功能相同。sh是很古老的东西,bash功能比sh强。
部分linux上面 sh=bash,有的sh=dash。
你用的那个linux上面显然 sh!=bash,猜测 sh=dash,而sh和dash都不支持declare,故报错。
故只能bash test.sh来执行。
sh 、dash 和 bash分别是三种shell,大部分功能相同。sh是很古老的东西,bash功能比sh强。
部分linux上面 sh=bash,有的sh=dash。
你用的那个linux上面显然 sh!=bash,猜测 sh=dash,而sh和dash都不支持declare,故报错。
故只能bash test.sh来执行。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询