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
上一篇:解决了, 关闭putty后无法在后台运行,后台程序也退出


下一篇:nohup 命令(设置后台进程): appending output to ‘nohup.out’ 问题