I have field like
a_b_c_d
I want as the output a b c_d, this query wont work for this
awk -F"_" <file> | '{print $1,$2,$3}'
Since it will only print a b c
|
|
I have field like
I want as the output a b c_d, this query wont work for this
Since it will only print a b c
|
||
|
|
|
|
Try
In other words,
The code in the brackets means
|
||||||
|