Ubuntu中文论坛
致力于Ubuntu中文推广
跳到内容
#1
帖子 由 procareer » 2011-09-06 9:38
代码: 全选
find . -name "*.c" -o -name "*.h" | xargs wc -l
find . -name{" *.c -o"," *.h"} | xargs wc -l
#2
帖子 由 我就是我2 » 2011-09-06 10:02
find $(echo -name{" *.c -o"," *.h"}) | xargs wc -l
#3
帖子 由 eexpress » 2011-09-06 10:08
#4
帖子 由 fnan » 2011-09-06 13:52
#5
帖子 由 lilydjwg » 2011-09-06 14:43
wc -l **/*.[ch]
find . -name "*.[ch]" | xargs wc -l
#6
帖子 由 procareer » 2011-09-06 16:15
#7
帖子 由 fnan » 2011-09-06 22:01
回到 “Shell脚本”