cp -v -ur path/to/jsps/ /dest/path/
The above command copies all files that have been updated from the source directory to the destination, preserving the directory structure.
I cannot figure out how to copy only * .someExtention files. I know you can use something like:
find -f -name *.jsp -exec some awesome commands {}
But I don’t know how to do this (and I don’t have time to read the information pages in detail).
All help is appreciated.
Thanks, LES
source
share