gpt4 book ai didi

mysql - 如何使用 bash 脚本将 mysql 数据库转储到 Linux 中的特定文件夹中?

转载 作者:行者123 更新时间:2023-11-29 16:49:14 24 4
gpt4 key购买 nike

我想将数据库表重复转储到由实时转储日期和时间指定的文件中的特定文件夹中。我能怎么做 ?

最佳答案

 1. Write this script inside any file for e.g. Sky [file extension doesn't matter] and make this file as executable file


current_date_time="`date "+%Y-%m-%d%H:%M:%S"`";
cd /home/akashgudadhe/FunZone/
mysqldump -u [user_name] -p[password] [dbname] > `pwd`/"$current_date_time.sql"


2. Run using terminal

./Sky [<----any_of your file name that you preferred above]

It will save [newly_created_file] into specified directory automatically.

关于mysql - 如何使用 bash 脚本将 mysql 数据库转储到 Linux 中的特定文件夹中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52908374/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com