$linuxcli.in _    [commands]    [tips & tricks]    [manpage]    [ESXi CLi]    [what is my ip?]    [pingme!]    [BIOS lock code]    [Code repo]


{

Exclude multiple columns on print

}

 awk command to scan and print
 with specific columns. 
   |
   |	   ; this sign use to terminate.
   |             |
   |             |   To print.
   |             |   /
   |             |  /
# awk '{$5=$6="" ; print}' /path/of/file
         |  |  |___ 
         |  |      \
         |__|       \
          /          \
         /            \
 Columns to exclude, which data replace
		     with the blank value
		     made with double quotes.

Last updated on 18 February 2025 6:49 am IST