goetia
software
0x53.net

Contribute

If you want to contribute service directories or source directories there are a couple of things to consider:

Config files

If a script has to do something based on a configuration file, it should behave as follows:

This usually results in the following contraption:

...
pipeline { cat /path/to/config }
pipeline {
	sed
		-e "/^#/d"
		-e "s/^[[:blank:]]*//g"
		-e "s/[[:blank:]]*$//g"
		-e "/^$/d"
}
forstdin
...