Chris Adams wrote: > Once upon a time, Alan Evans <ame.fedora@xxxxxxxxx> said: >> cd () >> { >> builtin cd $1 || return >> [[ -f ./.autorun ]] && . ./.autorun >> } > > Any shell functions should properly quote their arguments (and there are > possibly arguments to cd, so you should pass all args, not just the > first). So: > > cd () > { > builtin cd "$@" || return > [[ -f ./.autorun ]] && . ./.autorun > } > You still need to quote or escape the directory name, though. This should work even using any of the cd options. Ha, you didn't know cd has options? ;-) -- Bill Davidsen <davidsen@xxxxxxx> "We have more to fear from the bungling of the incompetent than from the machinations of the wicked." - from Slashdot -- users mailing list users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines