I have to copy a set of files from one folder to another folder and i amI'm using the following command,:
`cpcp -rf `head -n 100 /home/tmp/abc.txt` /home/tmp/test/files`files
the file contents in abc.txtabc.txt is like,:
./folder1/example.tar.gz ./folder2/example.tar.gz ./folder3/example.tar.gz
./folder1/example.tar.gz
./folder2/example.tar.gz
./folder3/example.tar.gz
But while executing the above 'cp' command am getting,
cp: will not overwrite just-created /home/tmp/test/files/example.tar.gz' with cp./folder3 /example.tar.gz'
cp command I'm getting: will not overwrite just-created /home/tmp/test/files/example.tar.gz' with ./folder1/example.tar.gz'
cp: will not overwrite just-created `/home/tmp/test/files/example.tar.gz' with `./folder3 /example.tar.gz'
cp: will not overwrite just-created `/home/tmp/test/files/example.tar.gz' with `./folder1/example.tar.gz'
I can understand that because the name of the .gz files are the same itsthat are showing in the error.
what i What I want to do is,
to have the same folder structure inside "/home/tmp/test/files"/home/tmp/test/files as listed in abc.txt
likeabc.txt, like:
/home/tmp/test/files/folder1/example.tar.gz
/home/tmp/test/files/folder2/example.tar.gz
/home/tmp/test/files/folder3/example.tar.gz
but amBut I'm getting only one 'example.tar.gz'insideexample.tar.gz inside files folder after executing the above "cp"cp command.
So what is the way to get what iI mentioned above?
Am new to this pls help me with explanation.