diff --git a/bin/blackbox_edit b/bin/blackbox_edit index ea733ac..8fdba99 100755 --- a/bin/blackbox_edit +++ b/bin/blackbox_edit @@ -4,6 +4,7 @@ # blackbox_edit.sh -- Decrypt a file temporarily for edition, then re-encrypts it again # set -e +[ -z $EDITOR ] && EDITOR="vi" blackbox_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) source ${blackbox_home}/_blackbox_common.sh diff --git a/bin/blackbox_view b/bin/blackbox_view new file mode 100755 index 0000000..09b64dd --- /dev/null +++ b/bin/blackbox_view @@ -0,0 +1,28 @@ +#!/usr/bin/env bash + +# +# blackbox_edit.sh -- Decrypt a file temporarily for edition, then re-encrypts it again +# +set -e +[ -z $EDITOR ] && EDITOR="vi" +blackbox_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) +source ${blackbox_home}/_blackbox_common.sh + +for param in """$@""" ; do + unencrypted_file=$(get_unencrypted_filename "$param") + if ! is_on_cryptlist "$param" && ! is_on_cryptlist "$unencrypted_file" ; then + read -r -p "Encrypt file $param? (y/n) " ans + case "$ans" in + y* | Y*) + blackbox_register_new_file "$param" + ;; + *) + echo 'Skipping...' + continue + ;; + esac + fi + blackbox_edit_start "$param" + $EDITOR $(get_unencrypted_filename $param) + rm -f "$param" +done