1. 运行脚本可以显示出本机的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)}'

 

  1. 如果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

 

  1. yum安装nginx服务,并且启动该服务
  • yum -y install nginx
  • systemctl start nginx