linux wc-lコマンド
2316 ワード
構文
≪インスタンス|Instance|emdw≫
[root@localhost shell]# wc --help
:wc [ ]... [ ]...
:wc [ ]... --files0-from=F
、 ,
, 。
, "-", 。
-c, --bytes
-m, --chars
-l, --lines
--files0-from= NUL ,
"-"
-L, --max-line-length
-w, --words
--help
--version
≪インスタンス|Instance|emdw≫
[root@localhost shell]# cat stu.txt
100:zhangsan:nan:jisuanji
101:zhanghong:nv:wenmi
[root@localhost shell]# cat stu.txt | wc -l //
2
[root@localhost shell]# cat stu.txt | sed -n '1p' //sed 1
100:zhangsan:nan:jisuanji
[root@localhost shell]# cat stu.txt | sed -n '1p'| wc -L // ,:
25
[root@localhost shell]# cat stu.txt | sed -n '1p'| sed 's/[^0-9]//g' //
100
[root@localhost shell]# cat stu.txt | sed -n '1p'| sed 's/[^0-9]//g'| wc -L //
3