This commit is contained in:
committer
2024-06-11 07:10:48 -05:00
parent 34faa4e887
commit a6e55caee2

View File

@@ -39,7 +39,7 @@ for input_file in "$@"; do
# please note, if a file outside of the sync directory is tp'ed, then the replacement will not happen. # please note, if a file outside of the sync directory is tp'ed, then the replacement will not happen.
# this is great, as trash-put should work normally outside of the sync-dir. and for files residing outside, # this is great, as trash-put should work normally outside of the sync-dir. and for files residing outside,
# no replacemant should be done. # no replacemant should be done.
#
# new_file=${original_string//old_substring/new_substring} # new_file=${original_string//old_substring/new_substring}
new_file=${input_file//$sync_dir_sym/$sync_dir} new_file=${input_file//$sync_dir_sym/$sync_dir}
@@ -47,7 +47,7 @@ for input_file in "$@"; do
trash-put "${new_file}" trash-put "${new_file}"
#echo "${new_file}" #echo "${new_file}"
else else
echo "error: unable to delete ${new_file}" echo "error: unable to delete \"${new_file}\""
fi fi
done done