shell脚本中怎么样设置脚本权限
在自己编写的一个简单的shell脚本开头中加入了权限chmod777脚本名,运行脚本的时候还是告诉我没有权限执行脚本,请问为什么?#!/bin/sh#greptest.s...
在自己编写的一个简单的shell脚本开头中加入了权限chmod 777 脚本名,运行脚本的时候还是告诉我没有权限执行脚本,请问为什么?
#!/bin/sh
#greptest.sh
chmod 777 greptest.sh
echo "Please enter name list:"
read list
if echo $list | grep "aaa" >/dev/null 2>&1
then echo "aaa is in the string list!"
else echo "aaa is not in the string list!"
fi 展开
#!/bin/sh
#greptest.sh
chmod 777 greptest.sh
echo "Please enter name list:"
read list
if echo $list | grep "aaa" >/dev/null 2>&1
then echo "aaa is in the string list!"
else echo "aaa is not in the string list!"
fi 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |