标签:wc -l passwd proc bash ffffff one text http 图片
shell循环for 变量 in 列表; do
循环体
done
1、求1加到100的和
#!/bin/bash
# sum of 1 to 100
Sum=0
for i in {1..100};do
Sum=$(($Sum+$i))
done
echo "Sum is $Sum"
2、依次向/etc/passwd中的每个用户问好,并显示对方的shell,例如:
Hello,root,your shell: /bin/bash
#!/bin/bash
#
UserNum=`wc -l /etc/passwd | cut -d‘ ‘ -f1`
for i in `seq 1 $UserNum`; do
UserName=`head -$i /etc/passwd | tail -1 | cut -d‘:‘ -f1`
UserShell=`head -$i /etc/passwd| tail -1 |cut -d‘:‘ -f7`
echo "Hello, $UserName, your shell: $UserShell"
done
标签:wc -l passwd proc bash ffffff one text http 图片
原文地址:http://blog.51cto.com/11193863/2319105