shell命令总结
Posted 小小菜_v
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell命令总结相关的知识,希望对你有一定的参考价值。
shell 开发总结
1、if …else…语法结构
ret=`ls *`
if [[ $ret =~ "hello"]];then
echo "hell world"
return
else
echo "are you ok?"
return
fi
2、函数书写格式
function test(){
cd /opt
# 变量赋值换行
str=$"\\n"
# 后台运行程序
nohup ./xxx.sh start &
# 能进行回车换行,使程序继续运行
sstr=$(echo -e $str)
echo $sstr
# 等待15s
sleep 15
return
}
#调用函数
test
3、自动化键盘输入expect
yum install expect -y
/usr.bin/expect <<EOF
span yum install npm # 输入命令
expect {*Is this ok [y/d/N]:*} #屏幕显示提示
send "y\\r" #模拟键盘输入
sleep 20
exit
EOF
4、获取服务器IP
# 获取IP
ip a show|grep -w inet |grep -w 180*|awk '{print $2}'|awk -F '/' '{print $1}'
# 获取ip和子网掩码位数
ip a show|grep -w inet |grep -w 180*|awk '{print $2}'
5、sed替换
sed -i "s#user=bob#user=judy#g" a.txt
6、 2>&1
nohup ./xxx.sh start 2>&1 >log &
# 2是标准错误输入,1 是标准输出,>是重定向符号,2>&1表示错误输出和标准输出都定向到log中
# 简写方式如下
nohup ./xxx.sh start &>log &
7、curl访问网站
curl -l http://127.0.0.1:8000
以上是关于shell命令总结的主要内容,如果未能解决你的问题,请参考以下文章