Page MenuHomeDevCentral

Prevent globbing and word splitting for shell script name
ClosedPublic

Authored by dereckson on Sep 6 2024, 21:38.
Tags
None
Referenced Files
F25204149: D3429.id8850.diff
Sun, Apr 5, 01:58
Unknown Object (File)
Fri, Apr 3, 17:02
Unknown Object (File)
Fri, Apr 3, 00:33
Unknown Object (File)
Thu, Apr 2, 20:47
Unknown Object (File)
Thu, Apr 2, 15:55
Unknown Object (File)
Thu, Apr 2, 10:22
Unknown Object (File)
Tue, Mar 31, 03:21
Unknown Object (File)
Sat, Mar 28, 14:45
Subscribers
None

Details

Summary

Shellcheck highlights an issue with the shell script snippet:

In roles/core/certificates/files/delete-certbot-certificate.sh line 28:
    echo "Usage: $(basename $0) <certificate>" >&2
                            ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
    echo "Usage: $(basename "$0") <certificate>" >&2
Test Plan

Tested with new script in rOPS

Diff Detail

Repository
rSNIPPETS Snippets
Lint
Lint Not Applicable
Unit
Tests Not Applicable