esccli
Escapes an array so output is valid shell code
esccli
takes an array and escapes any characters that might cause problems when pasted back into the terminal. Typically you’d want to use this against command parameters.
<stdin> -> esccli -> <stdout>
esccli @array -> <stdout>
As a method
» alias foobar=out 'foo$b@r'
» alias -> [foobar]
[
"out",
"foo$b@r"
]
» alias -> [foobar] -> esccli
out foo\$b\@r
As a function
» alias -> [foobar] -> set: fb
» $fb
["out","foo$b@r"]
» esccli: @fb
out foo\$b\@r
[
(index): Outputs an element from an array, map or tablealias
: Create an alias for a commandescape
: Escape or unescape inputeschtml
: Encode or decodes text for HTMLescurl
: Encode or decodes text for the URLout
: Print a string to the STDOUT with a trailing new line characterThis site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Mon Feb 13 09:18:06 UTC 2023 against commit f339958f33995895c1d997efcdbb8408d2c8d45f8b5f934.
Current version is which has been verified against 13950 tests cases.