Skip to content

Instantly share code, notes, and snippets.

@rococodogs
Created February 16, 2016 15:08
Show Gist options
  • Select an option

  • Save rococodogs/85de47e667ede5e15a83 to your computer and use it in GitHub Desktop.

Select an option

Save rococodogs/85de47e667ede5e15a83 to your computer and use it in GitHub Desktop.
sort All_Checked_out_items report by patron barcode
gawk -v n=+3 -f checked-out/items-due.awk examples/*All_Checked* | gawk 'BEGIN{FS="|";OFS="|"}NR == 1 {print $0; next} { print $0 | "sort --ignore-case --field-separator=\"|\" -k 12"}' | gawk -f general/to-json.awk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment