thunderkid
Technical User
I am trying to format inputs from several processed files. I want to use cut command.
Current:
File1col1 File1col2 File1col3 File1col4
I have tried:
cut -f1,2 File1.dat > firstsec.dat
cut -f3,4 File1.dat > thirdfourth.dat
The files have space as a delimiters. As I have use Cut it is not separating the file.
thunderkid
Current:
File1col1 File1col2 File1col3 File1col4
I have tried:
cut -f1,2 File1.dat > firstsec.dat
cut -f3,4 File1.dat > thirdfourth.dat
The files have space as a delimiters. As I have use Cut it is not separating the file.
thunderkid