Splitting Large files using Ubuntu Linux Command
Dec 13, 2023
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>