Fixed a bunch of issues and made trash -u, trash -e, and trash -E

behave more sensibly with respect to their arguments.
This commit is contained in:
Bruce Hill 2020-04-07 02:05:41 -07:00
parent ae09cfc9de
commit 8b8f9cbf25
2 changed files with 90 additions and 57 deletions

View File

@ -5,23 +5,38 @@ tmp="tests"
mkdir -p "$tmp" mkdir -p "$tmp"
trap 'rm -rf "$tmp"' EXIT trap 'rm -rf "$tmp"' EXIT
testdirs="1.testdir 2.testdir 3.testdir 4.testdir" testdirs="d1 d2 d3 d4"
testfiles="1.testfile 2.testfile 3.testfile" testfiles="f1 f2 f3"
for d in $testdirs; do for d in $testdirs; do
mkdir -p "$tmp/$d" mkdir -p "$tmp/$d"
for f in $testfiles; do touch "$tmp/$d/$f"; done for f in $testfiles; do touch "$tmp/$d/$f"; done
done done
./trash -v "$tmp/1.testdir/1.testfile" "$tmp/1.testdir/2.testfile" "$tmp/2.testdir" "$tmp/3.testdir" ./trash -v "$tmp/d1/f1" "$tmp/d1/f2" "$tmp/d2" "$tmp/d3"
./trash -vfu 1.testfile ./trash -v -f -u "$tmp/d1/f1"
./trash -vfu 2.testdir ./trash -v -f -u "$tmp/d2"
[ -e "$tmp/1.testdir/1.testfile" ] [ -e "$tmp/d1/f1" ]
! [ -e "$tmp/1.testdir/2.testfile" ] ! [ -e "$tmp/d1/f2" ]
[ -e "$tmp/1.testdir/3.testfile" ] [ -e "$tmp/d1/f3" ]
[ -e "$tmp/2.testdir" ] [ -e "$tmp/d2" ]
[ -e "$tmp/2.testdir/1.testfile" ] [ -e "$tmp/d2/f1" ]
! [ -e "$tmp/3.testdir" ] ! [ -e "$tmp/d3" ]
[ -e "$tmp/4.testdir" ] [ -e "$tmp/d4" ]
echo "Tests passed!" ./trash -f -v -e "$tmp/d1/f2" "$tmp/d3"
echo "old" > "$tmp/over.txt"
./trash "$tmp/over.txt"
printf '\033[2mPausing 2sec to let file deletion time advance...\033[0m\n'
sleep 2
echo "new" > "$tmp/over.txt"
./trash -v "$tmp/over.txt"
./trash -v -u "$tmp/over.txt"
! [ -e "$tmp/over.txt" ]
[ -e "$tmp/over.txt" -a "$(cat "$tmp/over.txt")" = "new" ]
rm -f "$tmp/over.txt"
./trash -v -u "$tmp/over.txt"
[ -e "$tmp/over.txt" -a "$(cat "$tmp/over.txt")" = "old" ]
printf '\033[32;1mTests passed!\033[0m\n'

80
trash
View File

@ -25,6 +25,7 @@ force_flag=
[ -z "$FS" ] && FS='\t' [ -z "$FS" ] && FS='\t'
[ -z "$RS" ] && RS='\n' [ -z "$RS" ] && RS='\n'
set -o pipefail set -o pipefail
shopt -s nullglob
fail() { fail() {
echo "$@" 1>&2 echo "$@" 1>&2
@ -52,12 +53,27 @@ Options:
EOU EOU
} }
pick_trashfiles() { find_trashfile() {
td="$1"; shift target0="$1"
prompt="$1"; shift target="$(readlink -f -- "$target0")"
find "$td"/info -mindepth 1 -maxdepth 1 -print0 | \ td="$(get_trashdir "$target")"
fzf -1 --read0 --prompt="$prompt" --query="$@" --multi \ if [ "$(dirname "$target")" = "$td/files" ] && [ -e "$target" ]; then
--preview="sh -c 'f=\"$td/files/\${1%.trashinfo}\"; [ -d \"\$f\" ] && tree \"\$f\" || echo \"\$f\" && cat \"\$f\"' -- {}" echo "$target"
else
best_file=
best_date=0
for f in "$td/files"/*; do
info="$td/info/$(basename "$f").trashinfo"
path="$(path_from_trashinfo "$info")"
date="$(date +"%s" -d "$(date_from_trashinfo "$info")")"
if [ "$path" = "$target" -a \( -z "$best_file" -o "$date" -gt "$best_date" \) ]; then
best_file="$f"
best_date="$date"
fi
done
[ -z "$best_file" ] && return 1
echo "$best_file"
fi
} }
confirm() { confirm() {
@ -152,13 +168,6 @@ DeletionDate=$(date +"%FT%H:%M:%S")
END END
} }
exit_if_trash_empty() {
if ! [ -d "$1" ] || [ -z "$(ls -A "$1/files")" ]; then
echo "Nothing in the trash!"
exit
fi
}
trash_file() { trash_file() {
filename=$1 filename=$1
dir=${filename%/*} dir=${filename%/*}
@ -196,29 +205,35 @@ trash_file() {
} }
untrash_files() { untrash_files() {
td="$(get_trashdir "$(readlink -f -- "${1:-$PWD}")")" for target; do
[ -d "$td/info" ] || return 1 if ! file="$(find_trashfile "$target")"; then
pick_trashfiles "$td" "Pick file(s) to untrash: " "$@" | \ [ "$force_flag" = "-f" ] || fail "No such file: $target"
while read -r info; do fi
orig="$(path_from_trashinfo "$td/info/$info")" info="$(dirname "$file")/../info/$(basename "$file").trashinfo"
mv -i "$td/files/${info%.trashinfo}" "$orig" && rm -f "$td/info/$info" orig="$(path_from_trashinfo "$info")"
mv ${force_flag:--i} $verbose_flag "$file" "$orig" || fail "Could not restore file: $file"
rm -rf $verbose_flag "$info" || fail "Could not clean up trash info file: $info"
done done
} }
empty_files() { empty_files() {
td="$(get_trashdir "$(readlink -f -- "${1:-$PWD}")")" for target; do
exit_if_trash_empty "$td" if ! file="$(find_trashfile "$target")"; then
pick_trashfiles "$td" "Pick file(s) to permanently delete: " "$@" | \ [ "$force_flag" = "-f" ] || fail "No such file: $target"
while read -r info; do fi
orig="$(path_from_trashinfo "$td/info/$info")" info="$(dirname "$file")/../info/$(basename "$file").trashinfo"
rm -r $verbose_flag "$td/info/$info" "$td/files/${info%.trashinfo}" || fail "Could not remove file" orig="$(path_from_trashinfo "$info")"
done || return 1 confirm "Delete file $file?" || exit 1
printf '\033[1mDeleted!\033[0m\n' rm -r $force_flag $verbose_flag -- "$file" "$info" || fail "Could not empty file: $file"
done
} }
empty_trash() { empty_trash() {
td="$(get_trashdir "$(readlink -f -- "${1:-$PWD}")")" [ $# -eq 0 ] && set "$PWD"
exit_if_trash_empty "$td" for target; do
td="$(get_trashdir "$(readlink -f -- "$target")")"
[ -d "$td/files" ] || continue
[ "$force_flag" != "-f" ] &&
( printf '\033[1mThe following %s of files will be deleted:\033[0m\n' \ ( printf '\033[1mThe following %s of files will be deleted:\033[0m\n' \
"$(du -h --summarize "$td/files" | cut -f1)B" && "$(du -h --summarize "$td/files" | cut -f1)B" &&
printf ' \033[33m%s\033[0m\n' "$td"/files/*) | more printf ' \033[33m%s\033[0m\n' "$td"/files/*) | more
@ -228,16 +243,19 @@ empty_trash() {
fi fi
rm -r $verbose_flag "$td"/files/* "$td"/info/* || exit 1 rm -r $verbose_flag "$td"/files/* "$td"/info/* || exit 1
printf '\033[1mDeleted!\033[0m\n' printf '\033[1mDeleted!\033[0m\n'
done
} }
list_trash() { list_trash() {
td="$(get_trashdir "$(readlink -f -- "${1:-$PWD}")")" [ $# -eq 0 ] && set "$PWD"
exit_if_trash_empty "$td" for target; do
td="$(get_trashdir "$(readlink -f -- "$target")")"
for f in "$td/files"/*; do for f in "$td/files"/*; do
printf '%s'"$FS"'%s'"$FS"'%s'"$RS" \ printf '%s'"$FS"'%s'"$FS"'%s'"$RS" \
"$f" "$(date_from_trashinfo "$td/info/$(basename "$f").trashinfo")" \ "$f" "$(date_from_trashinfo "$td/info/$(basename "$f").trashinfo")" \
"$(path_from_trashinfo "$td/info/$(basename "$f").trashinfo")" "$(path_from_trashinfo "$td/info/$(basename "$f").trashinfo")"
done done
done
} }
if [ $# -eq 0 ]; then if [ $# -eq 0 ]; then