Skip to content

Instantly share code, notes, and snippets.

@danmaispace
Created August 29, 2014 00:29
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 danmaispace/dff6773d86053598a92e to your computer and use it in GitHub Desktop.
Save danmaispace/dff6773d86053598a92e to your computer and use it in GitHub Desktop.
merge files after using split command in terminal
1. split
split -b 1000m "Work.tar.gz" WorkSegment
2. merge
cat WorkSegment* > Work.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment