Answer» what is the command to join files in Linux
See, I search on google, i got this website for splitting for files and I got this GREAT command
split -b n [K | m] [ -a suffixlength ] [ file [name]]
Now using this command there was a file ABC.RPM and I splittied it sucessfully it into two parts. But I am not able to understand your SYNTAX for JOINING of files. please tell me
I used the command
split -b 100000 ABC.RPM and it worked to split two files namely, XAA.RPM and XAB. Now just GIVE me the command to join these files.
thanx in advance. You don't need a join command. Just do: Code: [Select]cat filea fileb > newfile
|