Friday, January 8, 2010

Creating split RAR files via command line

Command below creates split RAR files (e.g. file.part001.rar, file.part002.rar...) via the command line:
$ rar a -m0 -v50000k <rar-file-name> <files-to-be-rared>
That creates files of 50,000k a piece without any compression (-m0).  The most important option here is the -v option :)

No comments: