|
Split Command... How to Rejoin?
I've just lost an hour of my life to this stupid problem.
I need to split a file into pieces (madwifi), so I can move it over on floppy to my machine with malfunctioning network. I used split, and it divided it up just fine. But for the life of me, I can not figure out how to rejoin the files at the other end.
cp and mv do not have an append function. cp infile1 outfile does fine, but when I cp infile2 >> outfile, it gives "missing destination file operand after infile2". cp infile1,infile2 outfile doesn't fscking work.
join and paste are the wrong things. dd if=infile1,infile2 of=outfile doesn't work either. Maybe I should be using dd in the first place. I am enraged.
|