Skip to content

Instantly share code, notes, and snippets.

@werrpy
Created November 3, 2018 00:15
Show Gist options
  • Save werrpy/14534eb3ced47b2554026146b44306a0 to your computer and use it in GitHub Desktop.
Save werrpy/14534eb3ced47b2554026146b44306a0 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# Backup Seed
#
# files to exclude
exclude="! -iname "*.mkv" ! -iname "*.mp4""
# backup
find "$@" -type f $exclude -print0 | while IFS= read -r -d $'\0' file; do
dest="restore"
echo "Copying $file to $dest"
mkdir -p "$dest"
cp --parents "$file" "$dest"
done
@werrpy
Copy link
Author

werrpy commented Nov 3, 2018

Run as: ./backup.sh /d/seed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment