This commit is contained in:
2024-07-16 12:59:22 -06:00
commit d0af37ab9c
66 changed files with 9675 additions and 0 deletions

16
gdl/track_files.fish Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env fish
function _update_count
count (find ~/Pictures/To\ Organize/gdl-organizing/ -type f)
end
function track_files -a goal
set -f original_count (_update_count)
while test (_update_count) -ge $goal
echo "Currently there are:" \
(set_color red)(_update_count)(set_color normal)
echo Delete (set_color green)(math (_update_count) - $goal)(set_color normal) "more files to finish"
sleep 10
clear
end
end