当前位置: 代码迷 >> 综合 >> 程序员小李通过管道统计prog.c函数中for语句通过的次数,需要使用的指令分别是
  详细解决方案

程序员小李通过管道统计prog.c函数中for语句通过的次数,需要使用的指令分别是

热度:42   发布时间:2023-09-21 20:16:00.0

程序员小李通过管道统计prog.c函数中for语句通过的次数,需要使用的指令分别是

正确答案: B C   你的答案: A B (错误)

vi
grep
wc
sort

Linux系统中的wc (Word Count) 命令的功能为统计指定文件中的字节数、字数、行数,并将统计结果显示输出。

1. 命令格式:

wc [选项]文件...

2. 命令功能:

统计指定文件中的字节数、字数、行数,并将统计结果显示输出。该命令统计指定文件中的字节数、字数、行数。如果没有给出文件名,则从标准输入读取。wc同时也给出所指定文件的总统计数。

3. 命令参数:

-c 统计字节数。

-l 统计行数。

-m 统计字符数。这个标志不能与 -c 标志一起使用。

-w 统计字数。一个字被定义为由空白、跳格或换行字符分隔的字符串。

-L 打印最长行的长度。

-help 显示帮助信息

--version 显示版本信息

4. 使用实例:

实例1:查看文件的字节数、字数、行数

命令:

wc test.txt

输出:

[root@localhost test] # cat test.txt 

hnlinux

peida.cnblogs.com

ubuntu

ubuntu linux

redhat

Redhat

linuxmint

[root @localhost test] # wc test.txt

 7  8 70  test.txt

[root @localhost test] # wc -l test.txt 

7  test.txt

[root @localhost test] # wc -c test.txt 

70  test.txt

[root @localhost test] # wc -w test.txt 

8  test.txt

[root @localhost test] # wc -m test.txt 

70  test.txt

[root @localhost test] # wc -L test.txt 

17 test.txt


说明:

7     8     70     test.txt

行数 单词数 字节数 文件名



grep, Global Regular Expression Print, 使用正则表达式搜索文本 , 并把匹配的行打印出来 .

wc, word count, 统计指定文件中的字节数 , 字数 , 行数 , 并将统计结果显示输出 .