Allow using something else than 'cut' to test this with the CUT env variable.

This commit is contained in:
hubertf 2007-01-23 21:32:55 +00:00
parent a0ab6bc85b
commit b9df58262c

View File

@ -1,8 +1,10 @@
#!/bin/sh
CUT=${CUT:=cut}
run_cut (){
echo "----- test: cut $@ -----"
cut "$@"
${CUT} "$@"
}
run_test_block (){