Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
13807b4e
Commit
13807b4e
authored
May 22, 2009
by
Gary King
Browse files
Fixed typo in run-shell-command for ACL
parent
1186643f
Changes
1
Hide whitespace changes
Inline
Side-by-side
asdf.lisp
View file @
13807b4e
...
...
@@ -1324,11 +1324,12 @@ output to `*verbose-out*`. Returns the shell's exit code."
:input
nil
:output
*verbose-out*
))
#+
allegro
;;
??
will fail if command has embedded quotes
;; will
this
fail if command has embedded quotes
- it seems to work
(
multiple-value-bind
(
stdout
stderr
exit-code
)
(
excl.osi:command-output
(
format
nil
"~a -c \"~a\""
#+
mswindows
"sh"
#-
mswindows
"/bin/sh"
command
)
:input
nil
:whole
t
(
format
nil
"~a -c \"~a\""
#+
mswindows
"sh"
#-
mswindows
"/bin/sh"
command
)
:input
nil
:whole
nil
#+
mswindows
:show-window
#+
mswindows
:hide
)
(
format
*verbose-out*
"~{~&; ~a~%~}~%"
stderr
)
(
format
*verbose-out*
"~{~&; ~a~%~}~%"
stdout
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment