MySQL export databases over the command line
by Ranganathan[ Edit ] 2012-08-27 17:13:36
<i>command</i>
[root@UnixBox ~]# mysqldump -uroot -ptestpass123 exampledb >exampledb.sql
Note: Here you need to change the password, database and username if needed. Please notice that you should use the -u and -p option without spaces.