vote up 0 vote down star

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

flag

44% accept rate

1 Answer

vote up 4 vote down check

Try

awk -F"_" -f <file> '{ print $1" "$2" "$3"_"$4 }'

In other words,

$echo a_b_c_d | awk -F"_" '{ print $1" "$2" "$3"_"$4 }'      
a b c_d

The code in the brackets means

  • print the first match
  • print space
  • print the second match
  • print space
  • ...
link|flag
2  
Minor detail, but you can just do awk -F_ instead of awk -F"_". – Mark Rushakoff Jul 2 at 22:52
yes, the simplest solution is to print the _ implicitly. – dalloliogm Jul 27 at 12:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.