build.sh 107 B

1234567
  1. #!/bin/bash
  2. TMPFILE=$(mktemp)
  3. ls *.nml | sort | xargs cat > $TMPFILE
  4. nmlc "${@}" $TMPFILE && rm $TMPFILE