Linux中國

Linux終端:用cat命令查看不可見字元

時常,某個程序或軟體並沒有語法錯誤,並且你檢查它的相關內容也確實沒有發現問題。這是因為你用普通文本編輯器軟體來查看的時候,有許多字元沒有顯示出來,但在終端使用cat命令可以很容易地檢測出是否存在這些字元。

首先,我們創建一個簡單的文本文件,寫入一些特殊字元。打開終端,運行命令

printf 'testing121111testing141012more testing1211001300even more testing1211111112' > /tmp/testing.txt

現在用不同的編輯器軟體打開,顯示的結果會不同。用簡單的cat打開將顯示:

$ cat /tmp/testing.txt 
testing
        testing

more testing

even more testing

如果用nano或者vim打開,將會看到:

testing
            testing^L^H

more testing
    ^@^K^@even more testing

現在我們給cat加上一些選項參數,以便能顯示出特殊字元來。

用cat -T命令來顯示TAB鍵的字元^I

cat -T /tmp/testing.txt
testing
^I^Itesting

more testing
^I
  even more testing
^I^I^I

用cat -E命令來顯示行尾的結束字元$

$ cat -E /tmp/testing.txt
testing$
        testing
  $
more testing$

even more testing$
            $

用簡單的cat -A命令就可以顯示所有不可見的字元:

$ cat -A /tmp/testing.txt
testing$
^I^Itesting^L^H$
more testing$
^I^@^K^@even more testing$
^I^I^I$

via: http://linuxaria.com/pills/linux-terminal-seeing-the-unseen-characters-with-cat?lang=en#more-7645

本文由 LCTT 原創翻譯,Linux中國 榮譽推出

譯者:runningwater 校對:Caroline


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國