I see the following note in the ACL block:
;;?? will fail if command has embedded quotes
Question: would this be fixed if we changed:
(format nil "~a -c "~a"" #+mswindows "sh" #-mswindows "/bin/sh" command)
to
(format nil "~a -c '~a'" #+mswindows "sh" #-mswindows "/bin/sh" command)
This would make anything in the command string not interpolate, though, so that seems bad...
thoughts?
r