If I have a file with an unknown number of column but I know I want columns X til the end, is there an easy way to use cut for this?
Let us say X=5,
I used,
cut -f5- filename
but it did not work.
Then I am trying to specify the -d'\t' and also it does not work.
Not sure what I am doing wrong.
Any help will be greatly appreciated.
thanks!
You're very close, but you're missing the dollar sign in there:
cut -d $'\t' -f5- file.txt
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With