1 Answer
You can concat all the files into one single file and import/restore using the Following commands
mysql -u username -p < dump.sql
Create one file using
mysqldump -u username -p --all-databases > dump.sql
Your Answer