1、实现批量添加20个用户,用户名为user1-20,密码为user+123 2、100个数相加,最大值,最小值 ...
分类:
系统相关 时间:
2017-01-03 19:24:13
阅读次数:
204
下面是我常用的几个主机监控的脚本,大家可以根据自己的情况再进行修改,希望能给大家一点帮助。1、查看主机网卡流量#!/bin/bash
#network
#Mike.Xu
while:;do
time=‘date+%m"-"%d""%k":"%M‘
day=‘date+%m"-"%d‘
rx_before=‘ifconfigeth0|sed-n"8"p|awk‘{print$2}‘|cut-c7-‘
tx..
分类:
系统相关 时间:
2015-11-28 06:43:06
阅读次数:
198
#!/bin/sh#服务优化,(sshd、network、crond、syslog、rsyslog)服务保持默认开机启动ServiceList=$(chkconfig--list|grep‘0‘|awk‘{print$1}‘|grep-Ev‘sshd|network|crond|syslog‘)forServicein$ServiceListdo/etc/init.d/$Servicestopchkconfig--level0123456$Serviceoffdone#..
分类:
系统相关 时间:
2015-11-28 06:42:00
阅读次数:
223