;; ;; Logon to FTP site ;; FTPLOGON "MySite" IFERROR RETURN ;; ;; Receive encrypted file from FTP site ;; RCVFILE "encryptedfile.gpg" IFERROR RETURN ;; ;; Decrypt received file ;; PGPDECRYPT "encryptedfile.gpg" "decryptedfile.txt" /pw=keypassphrase IFERROR RETURN