* Command no longer need to be run from the base directory of the repo. * blackbox_edit now asks "are you sure?" and is greatly simplified. _blackbox_common.sh: * add_filename_to_cryptlist now accepts paths relative to cwd. * fail_if_not_on_cryptlist now accepts paths relative to cwd. * new function: vcs_relative_path reports a path to the file relative to the REPOBASE. * new function: is_on_cryptlist plus... * Some minor performance enhancesments and cleanups. * confidence_test.sh now tests some commands while not in REPOBASE.
27 lines
522 B
Bash
Executable File
27 lines
522 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# blackbox_edit.sh -- Decrypt a file temporarily for edition, then re-encrypts it again
|
|
#
|
|
set -e
|
|
. _blackbox_common.sh
|
|
set -x
|
|
|
|
for param in """$@""" ; do
|
|
if ! is_on_cryptlist "$param" ; then
|
|
read -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 $unencrypted_file
|
|
blackbox_edit_end "$param"
|
|
done
|