mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-05 06:49:19 +00:00
* fix(test): ensure bats file list uses xargs * docs(readme): use yarn for testing instructions * fix(test): ensure pipelines fail properly * docs(alias): fix table header --------- Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
22 lines
423 B
Markdown
22 lines
423 B
Markdown
# x-backup-mysql-with-prefix
|
||
|
||
Dump MySQL tables matching a prefix to a timestamped file.
|
||
|
||
## Usage
|
||
|
||
```bash
|
||
x-backup-mysql-with-prefix <prefix> <name> [database]
|
||
```
|
||
|
||
- `prefix` – table prefix to match (e.g. `wp_`)
|
||
- `name` – file name prefix
|
||
- `database` – database name (default: `wordpress`)
|
||
|
||
## Example
|
||
|
||
```bash
|
||
x-backup-mysql-with-prefix wp_ blog
|
||
```
|
||
|
||
<!-- vim: set ft=markdown spell spelllang=en_us cc=80 : -->
|