Hi,
There is no option to mass copy products from one category to another.
You can mass duplicate them by selecting all of them in the products listing and clicking on "copy".
Then, if you want to move lots of products from one category to another rapidly, the fastest is to run a MySQL query in your database via phpmyadmin.
For example, if you just mass duplicated all your products in the category with the id 15, and that all the copies have at least the product id 236, and that you want to move them to the category with the id 62, you can run that query:
UPDATE jos_hikashop_product_category SET category_id = 62 WEHRE category_id = 15 AND product_id > 236;
That will move all the duplicates instantaneously.