前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >wc 命令使用说明

wc 命令使用说明

作者头像
西湖醋鱼
发布2020-12-30 16:37:40
5590
发布2020-12-30 16:37:40

wc 命令 使用说明

wc 命令还是很是简单的,通过 man 命令,可以见到可以选择的选项:

wc option file 

并且 wc 命令支持 管道操作

其中较为常用的命令选项

-c 字符的个数

-l 文件的行数

-w 单词的个数

小例子:

代码语言:javascript
复制
➜  ~ wc -l /etc/passwd
47 /etc/passwd
➜  ~ wc -c /etc/passwd
2549 /etc/passwd
➜  ~ wc -w /etc/passwd
104 /etc/passwd
➜  ~ 

Man 手册,具体内容很简短,有时间大家还是多阅读英文手册。

代码语言:javascript
复制
NAME
       wc - print newline, word, and byte counts for each file

SYNOPSIS
       wc [OPTION]... [FILE]...
       wc [OPTION]... --files0-from=F

DESCRIPTION
       Print  newline, word, and byte counts for each FILE, and a total line if more than one FILE is specified.  A word is a non-zero-length sequence of char‐
       acters delimited by white space.

       With no FILE, or when FILE is -, read standard input.

       The options below may be used to select which counts are printed, always in the following order: newline, word, character, byte, maximum line length.

       -c, --bytes
              print the byte counts

       -m, --chars
              print the character counts

       -l, --lines
              print the newline counts

       --files0-from=F
              read input from the files specified by NUL-terminated names in file F; If F is - then read names from standard input

       -L, --max-line-length
              print the maximum display width

       -w, --words
              print the word counts

       --help display this help and exit

       --version
              output version information and exit

保持更新,更多内容请关注cnblogs.com/xuyaowen;

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-07-22 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档