Raven Manual - Shell Access
The word shell ( command -- output ) executes a command using the user's shell environment, returning any output as a string.
# list home folder 'ls -l /home/me' shell trim as $listing
Additionally, back ticks (` ASCII 96) can be used to automatically execute a shell command as well as trim the output:
`ls -l /home/me` as $listing
|