gawk

Examples

gawk '{$1=$2=""; print $0}' filename

... print all columns but the first two



gawk '{split($0,a,","); print a[1]","a[3]}' filename.csv

... print only column 1 and 3, separated by "," from a .csv file with a "," as a delimiter

2026-04-11 10:53:46

minicms - © 2020-2026 Simeon Simeonov