awk

environment variables

read -rp 'Enter a search value: ' value
((${#value} <= 1000)) || die "No, I don't think so"
search="$value" awk '$0 ~ ENVIRON["search"] {print $1}' "$file"

replace every newline character with a space except for every third

remove new line characters but keep every third:

$ printf '1\n2\n3\n4\n5\n6\n7' | awk 'NR %3 != 0 {printf "%s ", $0; next} 1'
1 2 3
4 5 6
7 

replace the first newline character with a hyphen/minus

$ printf '1\n2\n3\n4\n5\n6\n7' | awk '{ if (NR == 1)  { printf("%s - ", $0); } else { print $0 } }'
1 - 2
3
4
5
6
7

replace cut -d | custom field widths

awk 'BEGIN{FIELDWIDTHS = "10 25 9"}; {print $3 $2 $1}' file

Snatched from https://stackoverflow.com/a/2961994

e.g. Remove first three columns

awk '{$1=$2=$3=""; print $0 }' <file>