Skip to content

Instantly share code, notes, and snippets.

@dipakc
Created September 29, 2019 20:20
Show Gist options
  • Select an option

  • Save dipakc/6a6da1dd65649b9f401677d95b3d31ce to your computer and use it in GitHub Desktop.

Select an option

Save dipakc/6a6da1dd65649b9f401677d95b3d31ce to your computer and use it in GitHub Desktop.
AWK Snippets

Print columns 1 and 3

echo "x:y:z#a:b:c" | awk 'BEGIN {RS="#";FS=":"} {print $1,$3}' 
x z
a c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment