Greetings!
A shell script question:
Can anyone tell me the pros & cons of coding your shell scripts to
stay in-process instead of spawning a child process when needed?
For example,
${VARIABLE##*/}
instead of
`basename $VARIABLE`
I'm trying to use the former as much as possible now but I wasn't exactly
sure if that is better, not so safe or just doesn't matter.
Thanks!
-- Gary