Only to find a successful way, not to find excuses for failure!
发布时间:2016-09-07 16:41:36
利用shell批量修改mysql数据表字段: 需要修改user库里user_base_info_xx表里的一个字段的长度,因为是分表的,所以存在00-99个表,如果单独修改,需要一个一个修改,很费时间,且容易出错,用shell脚本修改方便简单,不容易出错费话不多说,直接上脚本:[root@xx]# cat user_ba.........【阅读全文】
发布时间:2013-04-27 23:45:42
批量管理Linux系统服务#!/bin/sh#关闭所有系统服务for i in `chkconfig --list |awk '{print $1}'`;do chkconfig $i off;echo chkconfig $i off;done#开启指定的服务for i in crond network iptables messagebus udev-post ntpd sshd rsyslog sysstat;do chkconfig $i --level 3 on;echo chkconfig $i --l.........【阅读全文】
发布时间:2013-03-18 11:09:57
计划任务自动备份网站数据#!/bin/sh#备份网站数据cd /data/www/savedir=/backup/wwwbackup/`date +%F`echo $savedir;if [ ! -d "$savedir" ];then mkdir "$savedir"fifind /data/www/ -maxdepth 1 -type d|cut -d/ -f4 >file1for file2 in $(cat file1);doif [ -d "$file2" ]; t.........【阅读全文】