码迷,mamicode.com
首页 > 其他好文 > 详细

对每个用户说hello

时间:2016-08-14 20:35:57      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

1 #!/bin/bash
2 #对每个用户说hello
3 #用户数
4 Lines=`wc -l /etc/passwd | cut -d  -f1`
5 
6 for P in `seq 1 $Lines`; do
7   echo "Hello,`sed -n ""$P"p" /etc/passwd | cut -d: -f1`."
8 done

 扩展:

1、设定变量FILE的值为/etc/passwd
2、依次向/etc/passwd中的每个用户问好,并显示对方的shell,形如:  
    Hello, root, your shell: /bin/bash
3、统计一共有多少个用户

提示:for I in `seq 1 $LINES`; do echo "Hello, `head -n $I /etc/passwd | tail -1 | cut -d: -f1`"; done

只向默认shell为bash的用户问声好

#!/bin/bash
#对每个用户说hello
#用户数
Lines=`wc -l /etc/passwd | cut -d‘ ‘ -f1`

echo "Total user $Lines."
echo "user‘s shell is /bin/bash:"
for P in `seq 1 $Lines`; do
  if [ `sed -n ""$P"p" /etc/passwd | cut -d: -f7` == "/bin/bash" ]; then
  echo "$P Hello,`sed -n ""$P"p" /etc/passwd | cut -d: -f1`,your shell is `sed -n ""$P"p" /etc/passwd | cut -d: -f7`."
  fi
done

 

对每个用户说hello

标签:

原文地址:http://www.cnblogs.com/jjzd/p/5770885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!