标签:查看 mac 目录 dem find src 代码 多少 rgs
查看目录下有多少文件
hao$ find ./ -type f -name ‘*vue‘ | wc -l
计算这些文件的总代码数量
haodeMBP:src hao$ find ./ -type f -name ‘*vue‘ | head -n 上面数量 | xargs -I{} cat {} | wc -l
将这些代码拷贝到一个文件内
haodeMBP:src hao$ find ./ -type f -name ‘*vue‘ | head -n 上面数量 | xargs -I{} cat {} > ./xx.log
标签:查看 mac 目录 dem find src 代码 多少 rgs
原文地址:https://www.cnblogs.com/victory820/p/11403473.html