自己慢慢积累。
全部博文(293)
发布时间:2015-04-07 17:09:48
#!/usr/bin/ksh#数字段形式for i in {1..10}do echo $idone#详细列出(字符且项数不多)for File in 1 2 3 4 5 do echo $File done#对存在的文件进行循环for shname in `ls *.sh`do .........【阅读全文】
发布时间:2015-04-07 17:00:31
shell中可能经常能看到:>/dev/null 2>&1eg:sudo kill -9 `ps -elf |grep -v grep|grep $1|awk '{print $4}'` 1>/dev/null 2>/dev/null命令的结果可以通过%>的形式来定义输出/dev/null 代表空设备文件> 代表重定向到哪里,例如:echo "123" > /home/123.txt1 表示stdout标准输出,系统默认值是1,所以.........【阅读全文】
发布时间:2015-04-07 16:57:03
shell读取文件的每一行http://my.oschina.net/u/1176157/blog/206460for 和 while 读行是有区别的,说明见最后。写法一:----------------------------------------------------------------------------#!/bin/bash while read linedo echo $linedone < .........【阅读全文】
发布时间:2015-03-11 11:07:16
#参数ip=192.168.60.152db=insert02tb=insert_tr151_3 a=0a=`mysql -h $ip -P 3306 --database=$db -e"select count(*) from $tb;" | awk 'NR>1'`#echo "a = $a"let "b = $a / 1000"for ((i=1;i<b;i++))dolet "f=$i*1000"#echo "f = $f"let "h = $f - 999"#echo "h = $h"c=`mysql -h $ip -P 3306 -.........【阅读全文】