Adding a -p option to touch
I've sometimes wished that the UNIX touch command had the same -p option as mkdir. With a little bit of scripting, it can: #!/bin/sh mkdir="/bin/mkdir" touch="/usr/bin/touch" for arg in $*; do if [ "$arg" = "-p" ]; then...