首页 > 代码库 > for循环

for循环

[root@C7-1 shell]# cat useradd.sh 
#!/bin/bash
#
if [ $# -lt 1 ]; then
    echo "At least one argument."
    exit 1
fi
if id $1 &> /dev/null; then
    echo "$1 exists."
    exit 0
else
    useradd $1
    [ $? -eq 0 ] && echo "$1" | passwd --stdin $1 &> /dev/null && exit 0 || exit 1
fi


本文出自 “赵东伟的博客” 博客,请务必保留此出处http://zhaodongwei.blog.51cto.com/4233742/1853684

for循环