Linux Awk

[Solved] Linux Awk | Shell - Code Explorer | yomemimo.com
Question : linux awk

Answered by :

# usages
awk '{$1=""; print}' # print all except first column
awk '{$1=$3=$NF=$(NF-1)=""}1' file # print all except the 1ast and 3rd column and the last 1/2
awk -F"/" '{print $NF}' file #print only the last column
awk -F"/" '{print $NF-1}' file #print only the 2nd column from the end of string

Source : | Last Update : Tue, 12 Apr 22

Question : awk command in linux

Answered by : gulshan-dharne

awk '{$1=""; print}' # print all except first column
awk '{$1=$3=$NF=$(NF-1)=""}1' file # print all except the 1ast and 3rd column and the last 1/2
awk -F"/" '{print $NF}' file #print only the last column
awk -F"/" '{print $NF-1}' file #print only the 2nd column from the end of string

Source : | Last Update : Thu, 26 May 22

Answers related to linux awk

Code Explorer Popular Question For Shell