I need to copy all the .class files from server to local with all dir reserved. e.g. server:/usr/some/unknown/number/of/sub/folders/me.class will be /usr/project/backup/some/unknown/number/of/sub/folders/me.class the problem is, there are many other useless files such as .svn-base files that i don't want. how can i filter them so I only scp .class files?
| |||
|
feedback
|
|
I'd probably recommend using something like rsync for this due to its include and exclude flags, e.g:-
| ||||
|
feedback
|
|
There is no feature in scp to filter files. For "advanced" stuff like this, I recommend using rsync:
(this line copy rsync from distant folder to current one) Recent versions of rsync tunnel over an ssh connection automatically by default. | ||||
|
feedback
|
| |||
|
feedback
|
|
I like the rsync option mentioned. You didn't mention if this is a one-off operation, or if you'll be automating this repeatedly. For a one-off operation, the judicious use of find, grep -v, xargs and temporary files should make short work of this. | |||
|
feedback
|
|
Since you can
return back (logout) to local server and
If you find the
Finally, since you are keeping it in | ||||
|
feedback
|