rfuehrer/syno_autoshutdown

Usage of backticks is discouraged

dehesselle opened this issue · 2 comments

The code is not consistent in how it invokes commands. Usage of backticks like in this example...

THISDIR=`dirname $0`

... is generally discouraged and should be replaced by $(foo ...)

yeah, u r right. I know ;). ``is "my old style", $() the new. we have to harmonize this...

fixed