Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
if [ $# -lt 3 ];then
echo "usage: $pid $key $value"
exit 1
fi
pid=$1
key=$2
value="${3}ll"
@hydra35
hydra35 / list_kthread.sh
Created January 15, 2013 11:28
Show me kernel threads(CentOS 6)
ps auwx | grep -E '\[.*\]' | grep -v grep | awk '{print $NF}' | awk -F/ '{print $1}' | sed 's/\[//g' | sed s'/\]//g' | sort | uniq | sort
@hydra35
hydra35 / show_aspath.sh
Created September 21, 2012 14:53
lookup traceroute result using bgp.he.net
#!/bin/bash
lookup_single_ip() {
local ip=$1; shift
# 从bgp.he.net获取AS信息. e.g., <td>CHINANET Shanghai province network</td>
local data=$(curl -L http://bgp.he.net/ip/$ip 2>/dev/null | grep -A 30 'Announced By' | egrep '^\s*<td>.*</td>\s*$' | egrep -v 'AS[0-9]*</a>' | uniq)
# 从<td>标签中取值. e.g., CHINANET Shanghai province network
Lookup_single_ip=$(echo $data | awk -F '<' '{print $2}' | awk -F '>' '{print $2}')
}
@hydra35
hydra35 / create_eimg_grub1.sh
Created September 14, 2012 13:33
create grub1 empty image
#!/bin/bash
tarball=$1
output_img=$2
size=$3
check_tarball() {
if [[ ! -s $tarball ]]; then
echo "tarball: $tarball not found" >&2
fi
@hydra35
hydra35 / destroy_gw.sh
Created August 24, 2012 03:28
destroy NAT gateway on OSX
#!/bin/bash
# All these steps look excessive but address
# network instability issues created by not doing them
gwdev=`netstat -nr | grep default | awk '{ print $6 }' | head -1`
if [ -z "$gwdev" ]; then
gwdev=en1
fi
@hydra35
hydra35 / parse_bash_history.rb
Created August 15, 2012 04:07
parse raw bash histroy
file = ARGV[0]
File.readlines(file).each do |line|
if /^#(\d+)/.match(line)
ts = Regexp.last_match(1)
print Time.at(ts.to_i).to_s + " "
else
puts line
end
end
@hydra35
hydra35 / omreport.md
Created July 19, 2012 03:51
Dell Open Manage(OM) usage

安装Open Manage

omreport -?

用途:列出帮助

omreport storage controller

用途:查Raid controller model, cache memory size等

@hydra35
hydra35 / run_dd.sh
Created June 28, 2012 06:55
dd testing script
#!/bin/bash
if [ $# -lt 2 ]; then
echo "usage:$0 dev output_dir"
exit 1
fi
DEV="$1"
OUTDIR="$2"
DATASIZE="500" # in MB
@hydra35
hydra35 / run_fio.sh
Created June 27, 2012 10:00
fio testing script
#!/bin/bash
[[ $# -lt 2 ]] && exit 1
DEV="$1"
OUTDIR="$2"
[[ -d $OUTDIR ]] || mkdir -p $OUTDIR
BLOCK_SIZES="512 4K 8K 256K"
@hydra35
hydra35 / .vimrc
Created May 2, 2012 08:22
vimrc: set by file suffix
syntax on
set tag=~/tags
autocmd! BufNewFile,BufReadPre,FileReadPre *.rb set nu et ts=2 sw=2
autocmd! BufNewFile,BufReadPre,FileReadPre *.coffee so ~/.vim/ftplugin/coffee.vim