shell编程
Posted pycrab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell编程相关的知识,希望对你有一定的参考价值。
集合各种linux命令,实现某个功能,常用于自动化运维等。
shell编程
- 创建文件
[[email protected] test1]# cd /opt/
[[email protected] opt]# vim shell.sh
- 编写脚本文件
- 首行添加
#!/bin/bash
- 接着编写内容
echo "please input your name:" read uname echo "input your password:" read upwd echo "name:$uname, pwd:$upwd" #readonly name="py" #defined variale name="ppy" unset name
- 首行添加
- 修改文件权限
[[email protected] opt]# chmod a+x shell.sh
- 检查脚本语法
bash -n shell.sh
- 运行shell脚本
[[email protected] opt]# ./shell.sh
root用户计划任务
- 打开文件
crontab -e
- 添加任务
#分时日月周 命令 脚本 #* * * * * /bin/bash /opt/shell2.sh
- 查看计划任务
crontab -l -u root
以上是关于shell编程的主要内容,如果未能解决你的问题,请参考以下文章