Change scripts to not use tilde, prefer $HOME.

This commit is contained in:
2026-07-24 15:00:04 -07:00
parent b8b7ca1851
commit b0a7a03542
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -215,8 +215,8 @@ $search "$location" | sort | while read image; do
if [[ -n "$delete" ]]; then
echo -n " DELETE: "
if [[ -d ~/TRASH ]]; then
mv -v "$image" ~/TRASH/
if [[ -d $HOME/TRASH ]]; then
mv -v "$image" $HOME/TRASH/
else
rm -v "$image"
fi