14,990
edits
mNo edit summary |
mNo edit summary |
||
| Line 9: | Line 9: | ||
# print the newline counts of txt files | # print the newline counts of txt files | ||
wc -l *.txt | wc -l *.txt | ||
# print the whitespaces counts of txt files | |||
grep -c ' ' *.txt | |||
</pre> | </pre> | ||