Piotr Engelking <[email protected]> wrote: > #!/bin/bash > if [ "x$(basename -- $0)" = xeditor ]; then
Sorry, insufficient quoting, the above should be of course: if [ "x$(basename -- "$0")" = xeditor ]; then -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

