Array实现TCP的链接状态
#!/usr/bin/bash
declare -A status
type=`ss -an | grep :80|awk '{print $2}'`
for i in $type
do
echo let status[$type]++
done
for j in ${!status[@]}
do
echo "$j: ${status[$j]}"
done
while实现批量创建用户
#!/usr/bin/bash
while read line
do
if [ ${#line} -eq 0 ];then
contiune
fi
user=`echo $line|awk '{print $1}'`
pass=`echo $line|awk '{print $2}'`
id $user &>/dev/null
if [ $? -eq 0 ];then
echo "user $user already exists"
else
useradd $user
echo "$pass"|passwd --stdin $user &>/dev/null
if [ $? -eq 0 ];then
echo "$user is created"
fi
fi
done < $1
echo "ok......"
作者简介:
陈志珂(头条号:强扭的瓜不好吃)目前就职于中国最大的安卓应用软件公司,任高级工程师,现在公司任php开发工程师,python开发工程师,高级运维工程师,公众号“铅笔学园”运维内容合作作者之一。
铅笔学园:IT资源分享|知识分享,做初级程序员的指明灯