Skip to content

Instantly share code, notes, and snippets.

@stevekm
Last active September 16, 2015 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevekm/6874f1568ca175ec3770 to your computer and use it in GitHub Desktop.
Save stevekm/6874f1568ca175ec3770 to your computer and use it in GitHub Desktop.
Split files >4GB into <4GB archive files for FAT32 storage devices
#!/bin/bash
find -type f -size +4000M | while read FILE; do 7z a /media/user/StorageDevice/"${FILE}.7z" -mx0 -v4000m "$FILE"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment