Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
MySQL Dump All Database in Separate Files
easternnl
Jan 15th, 2016
418
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Bash
0.14 KB
| None
|
0
0
raw
download
clone
embed
print
report
mysql
-uroot
-e
'show databases'
|
while
read
dbname;
do
mysqldump
-uroot
--complete-insert
--some-other-options
"
$dbname
"
>
"
$dbname
"
.sql;
done
Add Comment
Please,
Sign In
to add comment
Public Pastes
Day09B
Java | 50 min ago | 0.70 KB
snowybot pie r3
JavaScript | 1 hour ago | 2.01 KB
FetchaCart
JavaScript | 1 hour ago | 1.25 KB
Cloudflare e-mail obfuscation script
JavaScript | 1 hour ago | 2.28 KB
Login error solution
JavaScript | 2 hours ago | 0.69 KB
2023-09-24_stats.json
JSON | 2 hours ago | 4.18 KB
2023-09-24_stats.json
JSON | 2 hours ago | 4.18 KB
2023-09-24_stats.json
JSON | 2 hours ago | 4.15 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!