摘要: #!/bin/bashUser_List=$@User_File=user.txtfor user in $User_Listdo if ! id $user &> /dev/null then echo "$user 不存在" PASS=$(echo $RANDOM |md5sum | cut - 阅读全文
posted @ 2022-09-14 18:25 往事已成昨天 阅读(30) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bashecho "当前的所有参数是\$@:$@"echo "当前所有参数的个数是\$#:$#"cat << EOF\$@表示所有参数\$#表示所有参数的个数EOF ############################################################ 阅读全文
posted @ 2022-09-14 11:32 往事已成昨天 阅读(878) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bashmonitor_dir=/opt/web/monitormonitor_file=gateway-monitor-0.0.1-SNAPSHOT.outfile_size=`du -s ${monitor_dir}/${monitor_file} | awk '{print $1 阅读全文
posted @ 2022-09-14 10:08 往事已成昨天 阅读(22) 评论(0) 推荐(0) 编辑