Creating a new file that is composed of other contents

Use and complete the template provided. If you don't, your post may be deleted!

  1. The problem statement, all variables and given/known data:
    Write a single command to create a new file composed of the contents of War followed by the the contents of Peace; the new file should be located in the john directory, named wheels. I have to start in the Paul directory which is ../john away, the two files I have to put in the new file are in the john directory

The john and paul directorys are both subdirectorys of the home directory

  1. Relevant commands, code, scripts, algorithms:

touch

  1. The attempts at a solution (include all code and scripts):
    touch ../john < war < peace wheels

  2. School (University) and Course Number:UWM Intro to unix

---------- Post updated at 11:50 PM ---------- Previous update was at 07:25 PM ----------

anyone please?

To merge 2 files, you will have to concatenate them.