- 运行脚本可以显示出本机的ip地址
- 方法一:ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:"
- 方法二:ip addr | awk '/^[0-9]+: / {}; /inet.*global/ {print gensub(/(.*)\/(.*)/, "\\1", "g", $2)}'
- 如果ip地址中有3这个数字,那么就打印出当前的系统时间
- ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:" | awk if{[number=3]} {print’ $(date +%F%n%T)’}
3. 如果ip地址中不含3这个数字,就批量建立用户magedu_00, magedu_01, ... magedu_100并且所有用户同属于magedu组
- ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:" | awk if{[number=3]} {print’$(date +%F)’} else {useradd group magedu_{01..100} }
4.打印出/etc/passwd这个文件中可以登陆的用户(非/usr/sbin/nologin)
- grep -v user /etc/passwd
- yum安装nginx服务,并且启动该服务
- yum -y install nginx
- systemctl start nginx
本文来自博客园,作者:林清|Julien,转载请注明原文链接:https://www.cnblogs.com/Julien1021/p/16376653.html