Installing an mSATA SSD in an (Older) Intel NUC

In this video I install an mSATA SSD in my Intel NUC. This NUC will have two SSDs. One will have Windows. The other will have Ubuntu.

Ultimate Intel NUC Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZNqgp0yXEWkhTdFm1ZkAt7h

Samsung 860 EVO mSATA: https://amzn.to/2t1ykzR (Amazon Affiliate

Optimize Command Line Batch Processing Using the Find Command

Find All Jpegs
find ./ -iname '*.jpg'
Find and Optimize all Jpegs
find ./ -iname '*.jpg' -exec jpegoptim -p {} \;
Create Hidden File to Track Date
touch .jpeg_crush
Create Optimization Script
nano jpeg_crush.sh
#!/bin/bash
find ./ -newer .jpeg_crush -iname '*.jpg' -exec jpegoptim -p {} \;
touch .jpeg_crush

Type control-o, control-x to exit.

Make Script Executable
chmod +x jpeg_crush.sh
Run Jpeg Crush
./jpeg_crush.sh