Function
system
call-system string &optional shell-type => status
A string.
A string.
The exit status of the invoked shell.
call-system allows Unix shell commands to be called from Lisp code. The output goes to standard output, as UNIX sees it (This normally means*terminal-io* in LispWorks.) /bin/sh. The C shell may be obtained by specifying"/bin/csh". call-system returns the exit status of the shell invoked to execute the command.
(call-system (format nil "adb ~a < ~a > ~a"
(namestring a)
(namestring b)
(namestring c)))
open-pipecall-system-showing-output