Latest web development tutorials

Linuxのトイレコマンド

LinuxのコマンドDaquanの LinuxのコマンドDaquanの

Linuxのトイレコマンドは、単語をカウントします。

「 - 」、トイレのコマンドは、標準入力デバイスからデータを読み込みますトイレのコマンドを使用すると、我々は、ファイル名を指定するか、指定したファイル名がない場合は、ファイルのバイト数、単語、または列の数を計算することができます。

文法

wc [-clw][--help][--version][文件...]

パラメータ:

  • -cまたは--bytesまたは--charsはほんの数バイトを示しています。
  • -lまたは--linesは、列の数だけを表示します。
  • -wまたは--wordsは、単語のみを表示します。
  • オンラインヘルプを--help。
  • --versionバージョン情報を表示。

デフォルトの場合は、wcがファイル、ワード、バイトを指定された行数をカウントします。 コマンドは次のとおりです。

wc testfile 

テストファイル、ファイルの内容を表示するには、あなたが見ることができます:

$ cat testfile  
Linux networks are becoming more and more common, but scurity is often an overlooked  
issue. Unfortunately, in today’s environment all networks are potential hacker targets,  
fro0m tp-secret military research networks to small home LANs.  
Linux Network Securty focuses on securing Linux in a networked environment, where the  
security of the entire network needs to be considered rather than just isolated machines.  
It uses a mix of theory and practicl techniques to teach administrators how to install and  
use security applications, as well as how the applcations work and why they are necesary. 

次のようにトイレ統計結果を使用すると、次のとおりです。

$ wc testfile           # testfile文件的统计信息  
3 92 598 testfile       # testfile文件的行数为3、单词数92、字节数598 

これらの中でも、3つの図は、行、単語、およびファイルテストファイル、ファイルのバイト数を表します。

あなたはこのようなテストファイル、testfile_1、testfile_2しばらく統計として、統計情報を同時に複数ファイルを使用する場合は、次のコマンドを使用します。

wc testfile testfile_1 testfile_2   #统计三个文件的信息 

出力は次のとおりです。

$ wc testfile testfile_1 testfile_2  #统计三个文件的信息  
3 92 598 testfile                    #第一个文件行数为3、单词数92、字节数598  
9 18 78 testfile_1                   #第二个文件的行数为9、单词数18、字节数78  
3 6 32 testfile_2                    #第三个文件的行数为3、单词数6、字节数32  
15 116 708 总用量                    #三个文件总共的行数为15、单词数116、字节数708 

LinuxのコマンドDaquanの LinuxのコマンドDaquanの