Skip to content

Instantly share code, notes, and snippets.

@csdy
Created March 10, 2015 10:24
Show Gist options
  • Select an option

  • Save csdy/16c55e7deedbb7a2fdfb to your computer and use it in GitHub Desktop.

Select an option

Save csdy/16c55e7deedbb7a2fdfb to your computer and use it in GitHub Desktop.
Chunk File
# Split by size
split -b=1M -d file.txt file
# Split by line
a=(`wc -l yourfile`) ; lines=`echo $a/12 | bc -l` ; split -l=$lines -d file.txt file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment