split – split a file into pieces . split [OPTION]… [INPUT [PREFIX]]

commandline session $ls sexample $cat sexample a b c d e f g h i j k l $split 3 sexample split: cannot open ‘3’ for reading: No such file or directory $split sexample 3 $ls 3aa sexample $ls -l total 8 -rw-r–r– 1 jeffrin jeffrin 24 Jul 31 21:52 3aa -rw-r–r– 1 jeffrin jeffrin …