Wednesday, March 22, 2017

Splitting Large files using Ubuntu Linux Command

Sometimes when we analyze large log files, we need to split them to analyze. Use the below linux command to split a large file into 1GB files.

split -b 1G -d <large_file_path> <file_name_for_parts>


No comments:

Post a Comment