J jabelli Oct 93 0 2019-08-15 #1 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 ^> > "^>"
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 ^> > "^>"
rconn Administrator May 13,681 256 Staff member 2019-08-15 #2 WAD. Try this in TCC: echo "foo^ bar" and then try it in CMD. So - another CMD-compatibility "feature".
WAD. Try this in TCC: echo "foo^ bar" and then try it in CMD. So - another CMD-compatibility "feature".
J jabelli Oct 93 0 2019-08-19 #3 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"
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"