Merge pull request #28 from harrisonpage/master

List of files to be be shredded now prints filenames
This commit is contained in:
Tom Limoncelli
2014-10-24 00:54:53 -06:00

View File

@@ -15,6 +15,7 @@ for i in $(<$BB_FILES) ; do
unencrypted_file=$(get_unencrypted_filename "$i")
encrypted_file=$(get_encrypted_filename "$i")
if [[ -f "$unencrypted_file" ]]; then
echo " $unencrypted_file"
shred_file "$unencrypted_file"
fi
done