OSC: Copy all packages in one project to another project

Hi,

probably an easy thing for the experts…
I want to copy all packages in one project to a new project, and tried osc with branch and copypac - but both work on package-level:

osc copypac SOURCEPRJ SOURCEPAC DESTPRJ [DESTPAC]

Entering a wildcard ‘*’ as source package does not work (Server returned an error: HTTP Error 404: Not Found)
Any hints? I’m not eager to process 30+ package manually…thanks!

OK, I used:
for i in $(osc ls $PROJECT) ; do $TODO PROJECT/$i ; done