Update README.md

This commit is contained in:
2023-12-17 20:30:26 +01:00
parent 67cbd13ca3
commit 371be89e88
3 changed files with 11 additions and 11 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -17,8 +17,8 @@ MySQL Backup docker container image
| Options | Shorts | Usage |
|---------------|--------|------------------------------------|
| mysql_bkup | bkup | Command utility |
| --operation | -o | Set operation, local or s3 (default: backup) |
| --destination | -d | Set destination (default: local) |
| --operation | -o | Set operation, backup or restore (default: backup) |
| --destination | -d | Set destination, local or s3 (default: local) |
| --source | -s | Set source, local or s3 (default: local) |
| --file | -f | Set file name for restoration |
| --source | -s | Set source (default: local) |

View File

@@ -39,15 +39,15 @@ error()
help()
{
echo
echo " -o|--operation -- Set operation (default: backup)"
echo " -d|--destination -- Set destination (default: local)"
echo " -s|--source -- Set source (default: local)"
echo " -s|--file -- Set file name "
echo " -db|--database -- Set database name "
echo " -p|--port -- Set database port (default: 3306)"
echo " -t|--timeout -- Set timeout (default: 120s)"
echo " -h|--help -- Print this help message and exit"
echo " -v|--version -- Print version information and exit"
echo " -o |--operation -- Set operation (default: backup)"
echo " -d |--destination -- Set destination (default: local)"
echo " -s |--source -- Set source (default: local)"
echo " -s |--file -- Set file name "
echo " -db|--database -- Set database name "
echo " -p |--port -- Set database port (default: 3306)"
echo " -t |--timeout -- Set timeout (default: 120s)"
echo " -h |--help -- Print this help message and exit"
echo " -v |--version -- Print version information and exit"
exit 0
}