在/etc/password用户名前面加hello,ID前加is

方法2:
#!/bin/sh
#set -x
file=/etc/passwd
while read LINE
#for i in `cat $file`
do
#username=`echo $i|cut -d: -f1`
username=`echo $LINE|awk -F: '{print $1}'`
userid=`echo $LINE|cut -d: -f3-`
echo "hello $username id is $userid"
done<$file
a=`wc -l "$file"`
echo "$a line"
#cut -d: -f1|wc -l
#grep -n "" $file|tail -|cut -d: -f1
#grep -c "" /etc/passwd $file|tail -
#sed -c "=" $fil|tail -
#sed -n -c "=" $file|tail -
#awk 'END{print NR}' $file #set +x
上一篇:Java-DES算法加密解密工具类


下一篇:Spring InitializingBean和init-method