79735092

Date: 2025-08-14 07:41:55
Score: 2
Natty:
Report link

Best practice is to use single quote all the time :

   ORG1_PASSWORD='$orgOne12345'
   ORG2_PASSWORD='$orgTwo180000'
   ORG3_PASSWORD='ORG_Admin123'

With no quotes or double quotes the variables will be interpreted in most cases (when interpreted using bash).

Escaping each characters is too verbose and you have to think about it and do it properly each time you change the password.

References :

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rémi Girard