不卡AV在线|网页在线观看无码高清|亚洲国产亚洲国产|国产伦精品一区二区三区免费视频

學(xué)習(xí)啦 > 學(xué)習(xí)電腦 > 操作系統(tǒng) > Linux教程 >

linux的wc命令怎么使用

時間: 加城1195 分享

  wc命令在linux系統(tǒng)下可以用于計算字?jǐn)?shù),字節(jié)數(shù)等,通過不同參數(shù)組合還能限制條件顯示某些數(shù)據(jù),具體怎么使用呢。下面由學(xué)習(xí)啦小編為大家整理了linux的wc命令的相關(guān)知識,希望大家喜歡!

  linux的wc命令詳解

  1.語法

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

  2.參數(shù)

  -c或--bytes或--chars 只顯示Bytes數(shù)。

  -l或--lines 只顯示列數(shù)。

  -w或--words 只顯示字?jǐn)?shù)。

  --help 在線幫助。

  --version 顯示版本信息。

  linux的wc命令實例

  在默認(rèn)的情況下,wc將計算指定文件的行數(shù)、字?jǐn)?shù),以及字節(jié)數(shù)。使用的命令為:

  wc testfile

  先查看testfile文件的內(nèi)容,可以看到:

  $ 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統(tǒng)計,結(jié)果如下:

  $ wc testfile # testfile文件的統(tǒng)計信息

  3 92 598 testfile # testfile文件的行數(shù)為3、單詞數(shù)92、字節(jié)數(shù)598

  其中,3 個數(shù)字分別表示testfile文件的行數(shù)、單詞數(shù),以及該文件的字節(jié)數(shù)。

  如果想同時統(tǒng)計多個文件的信息,例如同時統(tǒng)計testfile、testfile_1、testfile_2,可使用如下命令:

  wc testfile testfile_1 testfile_2 #統(tǒng)計三個文件的信息

  輸出結(jié)果如下:

  $ wc testfile testfile_1 testfile_2 #統(tǒng)計三個文件的信息

  3 92 598 testfile #第一個文件行數(shù)為3、單詞數(shù)92、字節(jié)數(shù)598

  9 18 78 testfile_1 #第二個文件的行數(shù)為9、單詞數(shù)18、字節(jié)數(shù)78

  3 6 32 testfile_2 #第三個文件的行數(shù)為3、單詞數(shù)6、字節(jié)數(shù)32

  15 116 708 總用量 #三個文件總共的行數(shù)為15、單詞數(shù)116、字節(jié)數(shù)708

  相關(guān)閱讀:Linux系統(tǒng)常見故障現(xiàn)象

  1. MBR中g(shù)rub損壞,1_5階段的數(shù)據(jù)損壞,2階段的grub損壞

  2. initramfs*.img文件損壞,內(nèi)核文件損壞

  3. /boot/grub/grub.conf文件丟失

  4. /etc/fstab丟失,無法掛載根等文件系統(tǒng)

  5. /boot 目錄全部的文件丟失

  6. root密碼忘記

  7. 為grub設(shè)置密碼,開機時生效,保護root密碼被惡意修改等

  二、常見故障的分析解決:

  1. 1階段和1_5階段出問題時會開機執(zhí)行完BIOS自檢后直接報錯

  2. 前面兩個階段順利通過,到了執(zhí)行/boot/ 下面的第二個階段時的程序調(diào)用/boot/grub/grub.conf 時文件丟失或者/boot/下內(nèi)核文件和initramfs*.img 文件丟失都會造成卡在第二個階段:丟失initramfs文件時會在過了開機選擇內(nèi)核啟動之后卡住不動,沒有任何提示(在/boot/grub /grub.conf 配置文件中定義了timeout時間,會過了倒計時,然后沒有任何提示)如果是丟失grub.conf 是會進入grub>提示符由管理員指定內(nèi)核文件和initramfs文件位置

  3. /etc/fstab丟失:

  系統(tǒng)可以開機,但是開機時會卡好長時間,因為許多服務(wù)等待超時無法啟動,此時磁盤按照默認(rèn)以只讀掛載根,這個掛載是在開機時掛載的,因為沒有fstab文件所以無法重新掛載根文件系統(tǒng)以及其他的系統(tǒng),沒有運行級別

  4. 為grub設(shè)置了密碼會在開機進入內(nèi)核啟動時,想要修改grub和內(nèi)核的參數(shù)或者進入系統(tǒng)時需要輸入密碼,當(dāng)然忘記這樣的密碼也只能使用光盤引導(dǎo)進入救援模式修改配置文件/etc/grub/grub.conf 把相應(yīng)的密碼行刪除即可。

3996402