I created a shell alias that runs a simple shell script.
The script is shown below, it sshs into another Linux machine:
#!/bin/bash
sshpass -p 'P@ssw0rd' ssh username@hostname
I would like to encrypt the 'P@ssw0rd' section of the shell script.