摘要: 1.linux下精确替换某个字符串 sed -i 's/\<old\>/new/g' filename.txt 2.举例: 2.1有个文件名为filename.txt,内容如下: newdalsad dsadsaold old dnw new 2.2 将精确查找到的old替换为new sed -i 阅读全文
posted @ 2017-12-28 11:40 Jello 阅读(2984) 评论(0) 推荐(0) 编辑
摘要: 1.linux下查找指定后缀的文件 例如查找当前目录下的所有后缀名时.c或.h的文件 find . -type f -regex ".*\.\(c\|h\)" 阅读全文
posted @ 2017-12-28 11:35 Jello 阅读(32974) 评论(0) 推荐(1) 编辑
摘要: 1.linux下递归列出目录下的所有文件名(不包括目录) ls -lR |grep -v ^d|awk '{print $9}'2.linux下递归列出目录下的所有文件名(不包括目录),并且去掉空行 ls -lR |grep -v ^d|awk '{print $9}' |tr -s '\n' 阅读全文
posted @ 2017-12-28 11:22 Jello 阅读(23580) 评论(1) 推荐(3) 编辑