DEV Community

Discussion on: The Only Bash Scripting Cheat Sheet That You Will Ever Need

Collapse
 
abcsxyz profile image
AbcSxyZ

To add some usefull features, pipe | [and eventually other operator to join command (&&, ||)], redirections.

Command substitution is nice too.

And to perform some calucation : $((1 + 1))

Collapse
 
bobbyiliev profile image
Bobby Iliev

Thank you for the great suggestions!