I recently bought a Fufjilm XT-5, and set it up to save each of the photos I take as both RAW and JPEG files. On my first hiking outing, which was just a simple 5 hour day hike, I had 60GB (!) of files to sort through which is a pretty ridiculous, and not something I was used to dealing with after a life spent just taking photos on my mobile. I’m just trying to memo this for myself - hoping over time I can streamline this process.
The first thing I need to do is cull down a lot of photos, and figure out which ones I will want to share on my blog and Instagram. Right now I’m using Adobe Bridge for this. The UI is a little bit janky (I don’t really know what all of the panels do) but it’s free so it’s good enough for me.
.jpg
. I’ll come back to deal with the RAW files later.for raw in *.RAF; do base="${raw%.*}"; if [ ! -f "${base}.jpg" ] && [ ! -f "${base}.jpeg" ] && [ ! -f "${base}.JPG" ] && [ ! -f "${base}.JPEG" ]; then echo "Moving to Trash: $raw"; mv "$raw" ~/.Trash/; fi; done
This just goes through and deletes any RAW file that does not have an accompanying JPEG. Being fairly ruthless, I managed to get my initial 60GB down to 14GB (woo).
Leave a comment