Check one and only one of start, stop are given.
[oweals/busybox.git] / testsuite / uuencode / uuencode-sets-standard-input-mode-correctly
1 saved_umask=$(umask)
2 umask 0
3 busybox uuencode foo </dev/null | head -n 1 | grep -q 666
4 status=$?
5 umask $saved_umask
6 return $status