Created
April 24, 2015 08:13
-
-
Save WagnerMatos/279a8afacee5c61e2c8e to your computer and use it in GitHub Desktop.
Split a cvs file in many parts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tail -n +2 file.txt | split -l 4 - split_ | |
for file in split_* | |
do | |
head -n 1 file.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