Fix more typos (#658)

This commit is contained in:
Viktor Szépe
2023-08-22 18:34:24 +02:00
committed by GitHub
parent c57441be8c
commit ea67327ff7
23 changed files with 51 additions and 51 deletions

View File

@@ -42,7 +42,7 @@ pt-secure-collect collect <flags>
|--mysql-password|MySQL password.|
|--ask-mysql-pass|Ask MySQL password.|
|--extra-cmd|Also run this command as part of the data collection. This parameter can be used more than once.|
|--encrypt-password|Encrypt the output file using this password.<br>If ommited, it will be asked in the command line.|
|--encrypt-password|Encrypt the output file using this password.<br>If omitted, it will be asked in the command line.|
|--no-collect|Do not collect data|
|--no-sanitize|Do not sanitize data|
|--no-encrypt|Do not encrypt the output file.|
@@ -58,7 +58,7 @@ pt-secure-collect decrypt [flags] <input file>
```
|Flag|Description|
|-----|------|
|--outfile|Write the output to this file.<br>If ommited, the output file name will be the same as the input file, adding the `.aes` extension|
|--outfile|Write the output to this file.<br>If omitted, the output file name will be the same as the input file, adding the `.aes` extension|
#### **Encrypt command**
@@ -69,7 +69,7 @@ pt-secure-collect encrypt [flags] <input file>
```
|Flag|Description|
|-----|------|
|--outfile|Write the output to this file.<br>If ommited, the output file name will be the same as the input file, without the `.aes` extension|
|--outfile|Write the output to this file.<br>If omitted, the output file name will be the same as the input file, without the `.aes` extension|
#### **Sanitize command**

View File

@@ -210,11 +210,11 @@ func processCliParams(baseTempPath string, usageWriter io.Writer) (*cliOptions,
opts.MySQLUser = opts.CollectCommand.Flag("mysql-user", "MySQL user name.").String()
opts.MySQLPass = opts.CollectCommand.Flag("mysql-password", "MySQL password.").String()
opts.AskMySQLPass = opts.CollectCommand.Flag("ask-mysql-pass", "Ask MySQL password.").Bool()
// Aditional flags
// Additional flags
opts.AdditionalCmds = opts.CollectCommand.Flag("extra-cmd",
"Also run this command as part of the data collection. This parameter can be used more than once.").Strings()
opts.EncryptPassword = opts.CollectCommand.Flag("encrypt-password", "Encrypt the output file using this password."+
" If ommited, the file won't be encrypted.").String()
" If omitted, the file won't be encrypted.").String()
// No-Flags
opts.NoCollect = opts.CollectCommand.Flag("no-collect", "Do not collect data").Bool()
opts.NoSanitize = opts.CollectCommand.Flag("no-sanitize", "Sanitize data").Bool()