We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Changes for 0.4.0 release:
len
exit
lines
for
loop
for item in x
loop item in x
glob
unsafe
trust
[]
input_hidden
replace
replace_regex
sed
const
let
The text was updated successfully, but these errors were encountered:
Ph0enixKM
Successfully merging a pull request may close this issue.
Changes for 0.4.0 release:
len
,exit
andlines
are now a built-ins and not standard library functions giving us ability to better optimize resulting bash codefor
instead ofloop
:for item in x
instead ofloop item in x
glob
for resolving glob pathsunsafe
keyword totrust
as it better describes the purpose of this command modifier[]
)input_hidden
function for entering information in secrecy such as passwords, tokensreplace
andreplace_regex
functions with better escaping and added optionalsed
with extended regex syntaxconst
instead oflet
)The text was updated successfully, but these errors were encountered: