I need to source the file by decrypting it on the fly using the below command.
. <(gpg -qd "$encrypted_filename")
sh is not supporting process substitution. I can't use bash. Please suggest some other way.
Is there a way to source an encrypted (GPG) file on-the-fly in a script?