Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.32 KB

GUIDELINES.md

File metadata and controls

42 lines (28 loc) · 1.32 KB

Unix Coding guidelines

Targeted Shell

Stella is intended to work at least with bash. But we will try to stick when it is possible to POSIX shell.

Guide rules

avoid use note
source .
== =
[[ ]] [ ] [[ is not POSIX but largely supported across shell. Often it is recommended to use [[ over [. But for now we stick to POSIX

Usefull Links