创建多个目录
将一个文件copy到当前目录下所有目录内
- find . -type d -exec cp Makefile {} \;
替换当前目录下所有的Makefile里面的TARGET为target
- find . -name Makefile -exec sed -i s/TARGET/target/g {} \;
查看一下当前目录下的所有的Makefile里面的内容
- find . -name Makefile -print -exec cat {} \;
-
./b/Makefile
-
all:
-
-
TARGET
-
./d/Makefile
-
all:
-
-
TARGET
-
./a/Makefile
-
all:
-
-
TARGET
-
./Makefile
-
all:
-
-
TARGET
-
./c/Makefile
-
all:
-
-
TARGET
阅读(4273) | 评论(0) | 转发(1) |