From 663079c0cdb10b3875606bde5b274bbe6b56f8d0 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 9 Oct 2025 07:16:04 -0700 Subject: [PATCH] Change `trashed` commands to hit the main Android storage. --- bashrc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc.sh b/bashrc.sh index aaaf4c6..ebdf691 100644 --- a/bashrc.sh +++ b/bashrc.sh @@ -75,8 +75,8 @@ alias trash-clean="clean-trash" alias check-trash="du -h $TRASH" alias trash-check="check-trash" -alias clean-trashed='find / -name ".trashed*" -exec du -h {} \; -delete | sort -h' -alias check-trashed='find / -name ".trashed*" -exec du -h {} \; -exec mv -v {} ~/TRASH/ \;' +alias clean-trashed='find "$SS" -name ".trashed*" -exec du -h {} \; -delete | sort -h' +alias check-trashed='find "$SS" -name ".trashed*" -exec du -h {} \; -exec mv -v {} ~/TRASH/ \;' # Help prevent mistakes. alias cp="cp -v"