Execute a system command: Difference between revisions

no edit summary
No edit summary
Line 485:
<lang DCL>Directory</lang>
Or, shorter<lang DCL>dir</lang>
 
=={{header|DBL}}==
<lang DBL>XCALL SPAWN ("ls *.jpg > file.txt") ;execute command and continue
XCALL EXEC ("script.sh") ;execute script or binary and exit
STOP '@/bin/ls *.jpg > file.txt' ;exit and execute command</lang>
 
=={{header|Delphi}}==
Anonymous user