Place multiple export files into a single directory, then run the following:
# Activate the wordpress importer wp plugin activate wordpress-importer --url=http://localhost/example.com/ # Iterate over all of the import files in a given folder. for f in myfolder/*.xml; do wp import $f --authors=skip --skip=attachment --url=localhost/example.com/; done