I have a file with 900.000 columns, the structure is:
1613 1200000012000500000011111.......
112345 1200000012000500000011111.......
1287659 1200000012000500000011111.......
1234 1200000012000500000011111.......
712826 1200000012000500000011111.......
I need only the numbers before the space, this is a new file as:
1613
112345
1287659
1234
712826
I try with
cat -df.txt |cut -d |,| -f7
but it does not work.