> For reliability, I like to run shell scripts via "/bin/sh -e".
Well, it would be okay, if you specified /bin/bash -e or even /bin/hush -e (once it is added, if will). But sh -e is wrong, because you claim only basic POSIX shell, and it doesn't have -e option. Yes, with sh you're need to do [ $? -eq 0 ] || exit $? _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
