On 4/14/2017 8:42 AM, cyg Simple wrote:
On 4/13/2017 2:43 PM, Brian Inglis wrote:

defensive coding is your friend to avoid disasters:
        if [ -n "$foodir" ] && [ -d $foodir/ ]; then
          /bin/rm -fR -- $foodir || exit
        else
          echo "Can't find directory '$foodir'"
          exit 2
        fi

And even this can be troublesome if you mistype a variable name anywhere
in this code.

Or there are spaces in $foodir


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

Reply via email to