#! /bin/sh password=$(zenity --password --title "Encrypt data password") image=$(zenity --file-selection --title="Select an image") file=$(basename $image) cp $image ./$file steghide embed \ --encryption twofish \ --compress 9 \ -cf $file \ -ef $1 \ --passphrase "$password"