We assume a file using ; as a column delimiter. Selecting a specific set of columns only requires a print statement. For instance, the following program selects the columns 3, 4 and 7 from its input:
awk -F';' -v 'OFS=;' '{ print $3, $4, $7 }'
It is as usual possible to more carefully choose lin...