Hi all i was asked to find the terminal command that will make a copy of a file lets call it program3.cpp and give to the copy the name homework6.cpp. After that you will have two files with different names, but identical contents.
I know how to copy the file but i cant figure out how to create a second identical file with a different name. All help is appreciated. Thanks!
Copy and rename in the same time (also change filename, not only path):
Rename only:
If you want to have the files permanently linked use the
ln
command instead ofcp
This puts a file descriptor (hard link) under the name
homework6.cpp
to the same file location asprogram3.cpp