Closed SebastianSimon closed 2 years ago
E.g. entering -quality in backupDir will show the “Equivalent command line” as
-quality
backupDir
./fixfx.sh -b '-quality'
which will actually be interpreted as
./fixfx.sh -b -q -u -a -l -i -t -y
potentially triggering undesirable options and throwing an error because -b is missing a value.
-b
It should be
./fixfx.sh -b './-quality'
instead.
E.g. entering
-quality
inbackupDir
will show the “Equivalent command line” aswhich will actually be interpreted as
potentially triggering undesirable options and throwing an error because
-b
is missing a value.It should be
instead.