1 #!/bin/sh 2 # 3 # This example shows how to configure afio to unpack GnuPG encrypted archives. 4 # it is a companion script to afio_pack_gpg_zip, see the comments there. 5 6 passphrasefile=my_passphrasefile 7 8 afio -ivzZ -3 3 -P ./gpg_decrypt_unzip my_archive_file 3<my_passphrasefile 9 10