T have a script. It contains an important password. I have encrypted the script with
scrypt dec -t 10 /usr/local/bin/myscript I can, of course, decrypt it with scrypt dec /usr/local/bin/myscript and then execute the script. The two last steps have been combined into DECRYPT=$(scrypt dec /usr/local/bin/myscript) && eval "$DECRYPT" Should I have any more concerns with this command than I have with the two-step process? -- Brian