-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bash mode #37
Comments
Regarding function name,
|
Interesting, that's good to know! |
pseudo file, like |
Not yet, but it is in the list, is called process substitution. |
Does we have a similar list for the |
At https://htmlpreview.github.io/?https://raw.githubusercontent.com/michaelmacinnis/oh/master/doc/comparison.html there's a comparasion of features and syntax of several shells, in particular |
This is a list of features to implement in the
bash
mode. See https://www.gnu.org/software/bash/manual/html_node/Major-Differences-From-The-Bourne-Shell.html#Major-Differences-From-The-Bourne-Shell$_
${!prefix}
and${!prefix@}
${!name[@]}
and${!name[]}
${#parameter}
${parameter#word}
and${parameter##word
${parameter%word}
and${parameter%%word}
${parameter/pattern/string}
and${parameter//pattern/string}
${parameter^pattern}
,${parameter^^pattern}
,${parameter,pattern}
,${parameter,,pattern}
${parameter@operator}
for (( expr1 ; expr2 ; expr3 )) ; do commands ; done
+=
assignment operator${!word}
<>
redirection operator<<<
redirection operatorThe text was updated successfully, but these errors were encountered: