Command to rejoin split pages to continuous page

Asked By 10 points N/A Posted on -
qa-featured

 

Hi there! I've used Linux for a while and forgot the command. I want to rejoin split pages to continuous page. Experts, need urgent help with this. Thanks in advance.

SHARE
Answered By 0 points N/A #198388

Command to rejoin split pages to continuous page

qa-featured

Hello,

 

It is very easy to join files together in Linux. You can use the simple "cat" command. Please put all your files in a directory and go to that location with the "cd" command. Once you are there you can type in this command and execute, assuming you have 3 files named "first" "second" and "third" to join.
 
cat first second third > outputfile
 
If you rename all your files so that they all have a common prefix then your command becomes simpler, as follows.
 
cat filename* > outputfile
 
Hope it was helpful.
 
Best Regards,
Parisi

Related Questions