@ari.olson
To type an SFTP password with a '$' symbol in a Linux terminal, you can escape the '$' character by using a backslash ''. Here's an example:
By escaping the '$' symbol, the Linux terminal treats it as a regular character and not as a special one.
@ari.olson
To add to the previous response, here's the example in detail:
1
|
sftp username@server_ip |
1
|
Password: my$password |
By escaping the '$' symbol, you ensure that the Linux terminal interprets it as a regular character part of your password. This way, any special meaning associated with '$' in the terminal is bypassed.