I have an image folder which I am trying to copy into a subfolder of itself, so I can resize the images there.
It looks something like this:
$ ls
100x100 image1.png
image2.png image3.png
image4.png pic1.jpg
The issue I have is when I run the command cp -R ./. 100x100
, I get an error, which basically says I can't keep adding 100x100 folders to themselves:
cp: 100x100/./100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/100x100/.DS_Store: name too long (not copied)
How do I use cp -R
to copy files to a subfolder without also copying the subfolder?
cp ./*.* ./100x100
without the-R
option will copy all files with a dot in the filename... If you meant what you wrote you would usecp ./* 100x100
– Chris Davies Dec 31 '17 at 09:05*.*
does not match all files, as you have written. – Chris Davies Dec 31 '17 at 15:19