1.任务一:

依次向/etc/passwd中的每一个用户问好,并显示对方的shell,形如:

hello,root,your shell is /bin/bash

#!/bin/bashfor i in `cut -d: -f1,7 /etc/passwd` ; do   yourname=`echo $i | cut -d: -f1`   yourshell=`echo $i | cut -d: -f2`    echo "hello,$yourname,your shell is $yourshell"done

2.任务二:

添加10个用户USER1到USER10,但要求只有用户不存在的情况下才能添加。密码同用户名。

#!/bin/bashfor i in `seq 1 10`; do    yourname="user$i"    if id $yourname ; then       echo "$yourname is exits"    else       useradd $yourname       echo "$yourname" | passwd --stdin $yourname    fidone