Created
January 12, 2020 16:50
-
-
Save devzer01/a87a24b1d06fd9046c33db9f0ff846a9 to your computer and use it in GitHub Desktop.
Shell script to be used in emergency when your Final Cut Pro has taken up over 50% of drive space, and you can't operate the Mac in any normal fashion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
EXTERNAL_BACKUP_DIR="/Volumes/data disk" | |
LIBRARY_NAME=$1 | |
mv "$LIBRARY_NAME" $EXTERNAL_BACKUP_DIR/ & #send the move to background | |
# monitor the destination path | |
raw footage library % lastSize=`du -s "$EXTERNAL_BACKUP_DIR/$LIBRARY_NAME" | tr '\t' ' ' | cut -d' ' -f1`; | |
while true | |
do | |
size=`du -s "$EXTERNAL_BACKUP_DIR/$LIBRARY_NAME" | tr '\t' ' ' | cut -d' ' -f1` | |
copyBytes=`expr $size - $lastSize` | |
TIMESTAMP=$(date "+%y-%m-%d %H:%M:%S") | |
echo "$TIMESTAMP move rate $(expr $copyBytes / 1024) kb/s" | |
lastSize=$size | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment