On 04/07/11 at 09:50am, Robert LeBlanc wrote: > So I've been trying zsh and this morning I ran into a snag that I hope > someone can help me with. I tried to scp a file from my web server and zsh > gave me a file does not exist before I even entered my password for the > remote server, when I ran the exact same command in bash it worked. > > % scp rleblanc@gw:~/test* . > zsh: no matches found: rleblanc@gw:~/test* > > Using the FQDN did not help. What is going on?
This is because the nomatch shell option is enabled by default. Just add 'setopt no_nomatch' to .zshrc to change that behavior. Documentation in zshall(1). -- Byron Clark -------------------- BYU Unix Users Group http://uug.byu.edu/ The opinions expressed in this message are the responsibility of their author. They are not endorsed by BYU, the BYU CS Department or BYU-UUG. ___________________________________________________________________ List Info (unsubscribe here): http://uug.byu.edu/mailman/listinfo/uug-list
