I’m reinstalling MacOS for a fresh start and using Opencore patcher to install Ventura. I want to find any files I left in my Downloads directory and back them up before I wipe everything.
Here’s how to do that:
- Install the 3rd party hook CLI:
sudo gem install hookapp
-
list all hook files referencing the directory you want to get hooked files out of. Notice that for me I’m only chosing the Downloads dir:
hook ls |grep Downloads > hooked_files.txt
-
Read the hooked_files.txt file to make sure it’s OK. Then copy hooked_files.txt to backup to your current dir
-
Backup all those files to your current directory:
#!/bin/bash
destination="./"
while IFS= read -r file; do
rsync -a --progress "$file" "$destination"
done < hooked_files.txt