Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Is this WAD?

Oct
92
0
Escape char preserved inside quotes:
Code:
89.4G ~> alias foo=`echo %1 "%1"`

89.4G ~> foo x^ x
x x "x^ x"

89.4G ~> foo ^>
> "^>"
 
Thanks, so I'll leave the unquote workaround in my alias:

Code:
svnaddproj=svn mkdir --parents "svn://engineering/%@unquote[%1]/trunk" "svn://engineering/%@unquote[%1]/branches" "svn:/
/engineering/%@unquote[%1]/tags" -m "Adding new project"
 
Back
Top