If I need to duplicate the contents of a database "foo" into a second database "bar" with MySQL, I would usually do something like this:
mysqldump -u root foo > foo.sql
mysql -u root -e "CREATE DATABASE bar;"
mysql -u root bar < foo.sql
What would be the equivalent procedure with ArangoDB?