Tag Archives: split

Linux – How To Split a Big File Into Several Small Files

split –bytes=1m /path/to/large/file /path/to/output/file/prefix You can change the output file size by changing the –bytes=1m to your preference. You can use b, k, or m. b represent bytes, k represent kilobytes, m represent megabytes. To restore the original file: cat … Continue reading

Posted in Linux Command Line | Tagged | Leave a comment