linux常用命令

查找包含某字符串的所有文件
grep -F 'aaa' -R ./

如何指定输出文件的某几行
想输出多行用:
sed -n '1,np' file
跳着输出用";"
sed -n '1p;4p;7p;9p' file

你可能感兴趣的:(linux常用命令)