Skip to content

Instantly share code, notes, and snippets.

@cyriac
Created May 10, 2016 07:22
Show Gist options
  • Save cyriac/7c3c780ed3ad147c10f699cf11ba009c to your computer and use it in GitHub Desktop.
Save cyriac/7c3c780ed3ad147c10f699cf11ba009c to your computer and use it in GitHub Desktop.
Split a file into specific size chunks
awk '!(NR%<size>){i++;}{print > "<filename_>"i"<.extension>";}' i=1 <filename.extension>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment