获得MySQL/PostgreSQL的内存占用比例的脚本

May 24th, 2010 1 comment

获得MySQL/PostgreSQL在GNU/Linux和FreeBSD下的内存占用比例:

随机生成网卡MAC地址

March 27th, 2010 no comment

#!/bin/sh exec 2>/dev/null dd if=/dev/urandom bs=1 count=6 | od -t x1 \ | awk -F ” ” ‘{if($0~/^0000000 /){$1=””;print $0;}}’ | sed ‘s/^ //;s/ /:/’

scp快速回拷文件

March 26th, 2010 no comment

scp快速回拷文件给登录的源主机: scp filename ${SSH_CONNECTION%% *}:~