7746ac8c763d0b19851bc894ac7ecfd2c25a316a jcasper Mon Feb 22 13:59:18 2016 -0800 Adding tawk - awk with FS and OFS set to tab; an old script of ours that wasn't in the tree, refs #16865 diff --git src/utils/tawk src/utils/tawk new file mode 100755 index 0000000..d2953fb --- /dev/null +++ src/utils/tawk @@ -0,0 +1,5 @@ +#!/bin/sh -e +# +# tawk - run awk with FS and OFS set to tabs. +# +exec awk -v 'FS=\t' -v 'OFS=\t' "$@"