Linux
limitlessGB
老年人
展开
-
Linux#Shell#if [ $# -ne 1 ];then 是什么意思?
$# 表示提供到shell脚本或者函数的参数总数; $1 表示第一个参数。 -ne 表示 不等于 另外: 整数比较 -eq 等于,如:if ["$a" -eq "$b" ] -ne 不等于,如:if ["$a" -ne "$b" ] -gt 大于,如:if ["$a" -gt "$b" ] -ge 大于等于,如:if ["$a" -ge "$b" ] -lt原创 2014-12-11 16:10:30 · 9031 阅读 · 1 评论 -
Linux#Shell#密码生成脚本
1. #!/bin/sh i=1 while [ $i -lt 10 ] do NewPassword=`head -c 200 /dev/urandom | tr -dc [:alnum:][:punct:] | head -c 32` echo "password $i:" $NewPassword let i=$i+1 done 2. #!/bin/sh i=01 for i i原创 2017-06-23 14:50:51 · 372 阅读 · 0 评论