I'm trying to extract a certain (the fourth) field from the column-based, 'space'-adjusted text stream. I'm trying to use the cut command in the following manner: cat text.txt | cut -d " " -f 4. Unfortunately, cut doesn't treat several spaces as one delimiter. I could have used awk '{ printf $4; }' or sed to collapse the spaces, but I'd like to know if there any way to deal with cut and several delimiters?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Try:
-s, --squeeze-repeats replace each input sequence of a repeated character
that is listed in SET1 with a single occurrence
of that character
|
|||||
|
|
|
With versions of |
|||
|
|