Linux运维经验
发布时间:2013-06-18 23:17:40
1、pstree 按照树状结构列出进程。2、split 将一个大文件分割成几个小的部分,比如: #split -b 2m largefile LF_ 会将largefile分割成.........【阅读全文】
发布时间:2013-05-27 18:14:36
向数据库中批量插入记录点击(此处)折叠或打开#!/bin/bashMysqlLogin="mysql -h10.8.10.216 -u*** -Ddbname -p***"COUNTER=0while [ $COUNTER -lt 10 ]; do ${MysqlLogin} -e "insert into SYNC_Sms.........【阅读全文】
发布时间:2013-01-28 21:24:47
./adb-mac shell tcpdump -A -s 0 -w /sdcard/Download/sync3.cap 'tcp'./adb-mac pull /sdcard/Download/sync3.cap ./ ......【阅读全文】
发布时间:2013-01-18 10:49:12
M-x replace-stringM-x replace-stringabcdef就把所有abc替换成了def......【阅读全文】