Appearance
word counts
bash
$ wc ~/advanceC/world.c
6 8 61 /home/cyan/advanceC/world.c行数,单词个数,字符个数,文件名
bash
-l 显示文件行数
-w 显示单词个数
-c 显示字符个数word counts
$ wc ~/advanceC/world.c
6 8 61 /home/cyan/advanceC/world.c行数,单词个数,字符个数,文件名
-l 显示文件行数
-w 显示单词个数
-c 显示字符个数