Skip to content

Instantly share code, notes, and snippets.

@ivansabik
Created June 9, 2014 15:39
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 ivansabik/5455dd1446f627b38cf4 to your computer and use it in GitHub Desktop.
Save ivansabik/5455dd1446f627b38cf4 to your computer and use it in GitHub Desktop.
Split CSV to multiple files with Shell script
#!/bin/bash
tail -n +2 CONSO.txt | split -l 20000000 - split_
for file in split_*
do
head -n 1 CONSO.txt > tmp_file
cat $file >> tmp_file
mv -f tmp_file $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment