glocate.pigz (228B)
1 #!/bin/bash 2 3 FILE="files" 4 5 # http://stackoverflow.com/a/10836225 6 ARGS=$(printf " %q" "$@") 7 8 # grep is slower with other locales, especially -i, so LC_ALL 9 ls ${FILE}.?.gz | parallel 'pigz -dc {} | sh -c "LC_ALL=C grep '$ARGS'"' 10