How do i show tabs in a file?



  • Generally if you view a file with a unix/linux editor you do not see the tabs. With this command you can view them.

    $ cat myfile
    one	two	three	four
    

    The cat command using the "-T" option, will show the tabs.

    $ cat -T myfile
    one^Itwo^Ithree^Ifour
    

Log in to reply
 

© Lightnetics 2024