Update coding conventions
This commit is contained in:
parent
01e4ec9ef1
commit
b8f18ac860
|
@ -1,4 +1,4 @@
|
||||||
Coding style used for my bash projects (v3.0 Dec 2016)
|
Coding style used for my bash projects (v3.2 Oct 2018)
|
||||||
As bash is clearly an error prone script language, we'll use as much standard coding as possible, including some quick and dirty debug techniques described here.
|
As bash is clearly an error prone script language, we'll use as much standard coding as possible, including some quick and dirty debug techniques described here.
|
||||||
|
|
||||||
++++++ Header
|
++++++ Header
|
||||||
|
@ -162,6 +162,15 @@ if [ $retval -ne 0 ]; then
|
||||||
Logger "Some error message" "ERROR" $retval
|
Logger "Some error message" "ERROR" $retval
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
++++++ includes
|
||||||
|
|
||||||
|
Using merge.sh, the program may have includes like
|
||||||
|
include #### RemoteLogger SUBSET ####
|
||||||
|
All possible includes are listed in ofunctions.sh
|
||||||
|
Mostly, includes are needed to port functions to a remote shell without writing them again.
|
||||||
|
|
||||||
|
++++++ Remote execution
|
||||||
|
|
||||||
Remote commands should always invoke bash (using '"'"' to escape single quotes of 'bash -c "command"'). It is preferable to use ssh heredoc in order to use plain code.
|
Remote commands should always invoke bash (using '"'"' to escape single quotes of 'bash -c "command"'). It is preferable to use ssh heredoc in order to use plain code.
|
||||||
If local and remote code is identical, wrap remote code in a function so only minor modifications are needed.
|
If local and remote code is identical, wrap remote code in a function so only minor modifications are needed.
|
||||||
Remote code return code is transmitted via exit.
|
Remote code return code is transmitted via exit.
|
||||||
|
@ -184,6 +193,9 @@ if [ $retval -ne 0 ]; then
|
||||||
Logger "Some error message" "ERROR" $retval
|
Logger "Some error message" "ERROR" $retval
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
We also need to transmit a couple of environment variables (RUN_DIR; PROGRAM; _LOGGER_VERBOSE... see current setups) in order to make standard code.
|
||||||
|
Include works here too.
|
||||||
|
|
||||||
++++++ File variables
|
++++++ File variables
|
||||||
|
|
||||||
All eval cmd should exit their content to a file called "$RUNDIR/$PROGRAM.${FUNCNAME[0]}.$SCRIPT_PID"
|
All eval cmd should exit their content to a file called "$RUNDIR/$PROGRAM.${FUNCNAME[0]}.$SCRIPT_PID"
|
||||||
|
|
Loading…
Reference in New Issue