6

Trying to use the encrypt.sh utility and my password has special characters:

./encrypt.sh input="$%#!" password="your_jasypt_password" algorithm="PBEWITHSHA256AND128BITAES-CBC-BC" keyObtentionIterations=1000 providerName="BC"

-bash: !": event not found

user2395365
  • 1,991
  • 4
  • 18
  • 34

1 Answers1

17

Ok easy-- need to use single quotes instead of double quotes.

user2395365
  • 1,991
  • 4
  • 18
  • 34