码迷,mamicode.com
首页 > 其他好文 > 详细

for循环

时间:2016-09-18 21:31:24      阅读:138      评论:0      收藏:0      [点我收藏+]

标签: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循环

标签:for循环

原文地址:http://zhaodongwei.blog.51cto.com/4233742/1853684

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!