练习一:写一个脚本       1.设定变量FILE的值为/etc/passwd       2.依次向/etc/passwd中的每个用户问好,并且说出对方的ID是什么        形如:(提示:LINE=`wc -l /etc/passwd | cut -d" " -f1`)         Hello,root,your UID is 0.       3.统计一个有多少个用户程序如下:#!/bin/bashfile="/etc/passwd"line=` wc -l $file|cut -d" " -f1 `for i in ` seq 1 $line `;douserid=` head -$i $file| tail -1 |awk -F ":" '{print $3}'`username=` head -$i $file| tail -1 |awk -F ":" '{print $1}'`echo "hello,$username!your uid is $userid"doneecho "There are $line users"