Hi,
I have a lot of files in one directory, for example:
first file looks like this:
t51 21 1 57
t51 41 2 57
second, third... files all look similar. Their names are all different, except they end on .dat
What want to do is to open each file, only print column 2 and 3 and then save it with the same filename. The first file would then look like:
21 1
41 2
Probably this is a simple task?
I have a lot of files in one directory, for example:
first file looks like this:
t51 21 1 57
t51 41 2 57
second, third... files all look similar. Their names are all different, except they end on .dat
What want to do is to open each file, only print column 2 and 3 and then save it with the same filename. The first file would then look like:
21 1
41 2
Probably this is a simple task?