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.
Bash allows grouping of commands into parenthesis.
This is very useful because '||' can be used to chain a block that executes if the previous fails.
Example:
test -e examples \ || \ ( \ mkdir examples \ && echo -e "fn main() {\n\tprintln!(\"Hello!\");\n}\n" > examples/hello.rs \ && clear \ && echo "--- Created examples folder" \ )