Programmatically Safe Password Generation
As is, when generating a new password, there's a checkbox to add "Special Characters" to a "Random Password" type password. It would be nice if there was a checkbox option for "Programmatically Safe" special characters.
For example, sometimes a password needs to be entered on the command line or put into a script between quotes (e.g., "Example Passw0rd#"), but depending on the scripting/programming language involved, some things might be accidentally escaped or interpreted unintentionally. For example, the ` character or $ character showing up in a string on a command line or script can be (mis)interpreted by the shell or interpreter or compiler.
Yes, I realize that perhaps it is a bad practice to type passwords into scripts or command lines, but that's sometimes just the reality of situations, and it would be nice to be able to easily generate a strong, random password that can be easily pasted in.
