Execute a system command: Difference between revisions

Content added Content deleted
(VB.Net system command execution)
No edit summary
Line 245: Line 245:
=={{header|Applesoft BASIC}}==
=={{header|Applesoft BASIC}}==
<lang ApplesoftBASIC>? CHR$(4)"CATALOG"</lang>
<lang ApplesoftBASIC>? CHR$(4)"CATALOG"</lang>

=={{header|Arturo}}==

<lang arturo>print $(shell "ls")</lang>

{{out}}

<pre>
data.log
rosetta.art
sample.txt/pre>

=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==
<lang autohotkey>Run, %comspec% /k dir & pause</lang>
<lang autohotkey>Run, %comspec% /k dir & pause</lang>