vim /data/linux.c
3、取出某一行或者幾行
seq 10 #生成從1到10的序列
sed -n '20p' linux.c
sed -n '20,30p' linux.c
awk 'NR=20' linux.c
awk 'NR=20,NR=30' linux.c
grep "20" linux.c #內(nèi)容為20
grep -An "20" linux.c #顯示文件內(nèi)容,及接下來的n行
head -30 /linux.c | tail 11 #顯示前30行的后11行
4、find查找與sed替換
find /data/ -type f #查找文件
find /data/ -type d #查找目錄
find /data/ -name ".c" #查找后綴名為.c的文件
#修改文件內(nèi)容
sed -i "s#目標字符#替換成的字符#g" /data/linux.c
#把find命令找到的文件交給sed處理
find /data/ -type f -name ".c" | xargs sed "s#1#2#g" -i
5、其他命令
ifconfig # 查看ip地址
ifup #啟動網(wǎng)卡
ifdown #關(guān)閉網(wǎng)卡
man is #linux查詢幫助
上一個教程:Linux patch命令
下一個教程:永遠也記不住的linux命令