概述
将一个脚本保存为带有扩展名的文件,如 test1.sh,
内容,例如:
#/bin/bash
echo -n "enter login name:"
read name
echo -n "enter password:"
read pwd
if [ $name = "abc" -a $pwd = "123" ] # 模拟登陆输入,需要输入 abc/123
then
echo -e "the login name and password are right! n" # echo -e " xxxxx" 打印换行
else
echo -e "the input is wrong. n"
fi
在终端上输入: chmod +x test1.sh,赋予可执行权限。
在终端上输入: ./test1.sh 或者 sh test1.sh 就能运行成功。
另外,如果脚本文件没有扩展名的话,在终端上输入: ./test1 或者 test1 脚本都能执行成功。
最后
以上就是能干镜子为你收集整理的Ubuntu 上运行 Shell 脚本的全部内容,希望文章能够帮你解决Ubuntu 上运行 Shell 脚本所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复