Skip to content

Instantly share code, notes, and snippets.

@nashid
Last active March 10, 2022 01:47
Show Gist options
  • Select an option

  • Save nashid/b2e6add2479c5d74fa14a5025c7a3ec0 to your computer and use it in GitHub Desktop.

Select an option

Save nashid/b2e6add2479c5d74fa14a5025c7a3ec0 to your computer and use it in GitHub Desktop.
awk shortcuts

Print without the first elemenet:

grep "type" * | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}' | grep "\"type\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment