時隔兩年,又來了baidu,發現當年不少linux下經常使用的命令都記不大清楚了,挨個查找很是繁瑣,因而下定決心仍是把一些常常碰到的作一作記錄好了。linux
grep:shell
awk:vim
sed:bash
文件操做:url
vim: spa
BASH:code
shell中按行讀入文件:blog
#!/bin/bash for line in `cat filename` do echo $line done
######## another way different output ##########
cat filename | while read line
do
echo $line
done
後臺執行程序:nohup command >> file.out &進程
查看進程: ps -eip
殺死進程: kill pid