Hey all.. I'm using the command: rsync -lHtSuWvzrvopglD -e ssh -C root@fraggalaxy.com:/gameservers / But its not moving *.so files.. Any idea what I am doing wrong? Thanks Ken
>>>>> "Ken" == ryvral <ryvral@dragonsrest.net> >>>>> wrote the following on Wed, 23 Jul 2003 18:03:14 -0400Ken> Hey all.. I'm using the command: Ken> rsync -lHtSuWvzrvopglD -e ssh -C root@fraggalaxy.com:/gameservers / Ken> But its not moving *.so files.. Any idea what I am doing wrong? Try adding more options, like this: rsync -lHtSuWvzPh6rvSqrjJ32opEXnbNZglDsp -e ssh -C root@fraggalaxy.com:/gameservers / -- Ben Escoto
On Wed, Jul 23, 2003 at 06:03:14PM -0400, Ryvral wrote:> rsync -lHtSuWvzrvopglD -e ssh -C root@fraggalaxy.com:/gameservers / > > But its not moving *.so files.. Any idea what I am doing wrong?They're excluded by -C (--cvs-exclude). You could add an explicit --include='*.so', if you want to override that. ..wayne..