summaryrefslogtreecommitdiffstats
path: root/tests/sort.sh
blob: c5edad133b1d2c4e5ffff5a03ae7d50dfb737726 (plain)
1
2
3
4
5
#!/bin/sh

head -n 7 $1 > .foo
tail -n +8 $1 | grep  '[[:alnum:]]' | sort >> .foo
rm $1