🖋️ Command Reference
$
View Source
!fn --shellpen-private writeDSL writeln "$@"
Run any arbitrary command
You must supply your own quotations.
Parameters
$* |
Command name and arguments |
Example
- echo "Hello" \| $ sed "'s/foo/bar'"
View Output
echo "Hello" | sed 's/foo/bar'
Different
- echo "Hello FOO BAR" \| $ sed "'s/foo/bar'"
View Output
echo "Hello FOO BAR" | sed 's/foo/bar'