We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Q. How can I strip off the prefixes from a prefixed array?
A. You can use substitution, like ${values[*]##*:}
${values[*]##*:}
Q: Why doesn't this work as expected?
$ dlcall printf "%s\n" "Hello, World" Hello, World\n
$ dlcall printf $'%s\n' "Hello, World" Hello, World