1. 程式人生 > >Bash shell 學習筆記六

Bash shell 學習筆記六

vim中統計單詞的個數

統計hello單詞的個數

:%s/hello/&/g

:%s+hello+&+g

sed 的一個用法

echo 135.0.1.4|sed 's//./*(1<<24)+/;s//./*(1<<16)+/;s//./*(1<<8)+/'
135*(1<<24)+0*(1<<16)+1*(1<<8)+4

printf 的一個用法

ip=$(printf "%d.%d.%d.%d" $((ip_long>>24)) $(((ip_long & 0xffffff)>>16)) $(((ip_long & 0xffff)>>8)) $((ip_long & 0xff)))