Standardize verbose parameter from -vb to -ve across all scripts

- Update all Bash scripts (sf-check, sf-org-info, sf-data-export, sf-data-import, sf-logs-tail) to use -ve instead of -vb
- Update all PowerShell scripts (sf-org-info.ps1, sf-apex-run.ps1, sf-check.ps1, sf-data-export.ps1, sf-data-import.ps1) to use -ve instead of -vb
- Fix PowerShell parameter conflicts with built-in -Verbose parameter
- Update README.md, TESTING.md, and OPTION_CONSISTENCY.md documentation to reflect -ve parameter
- Update test scripts (test-wrapper-suite.sh, test-wrapper-suite.ps1, test-all-wrappers.sh) to use -ve
- Maintain cross-platform consistency with two-character option scheme
- Fix Unicode display issues in PowerShell output with UTF-8 encoding
This commit is contained in:
Reynold Lariza
2025-08-28 20:47:46 +08:00
parent 579264e3d1
commit 159ede3794
16 changed files with 116 additions and 112 deletions

View File

@@ -35,7 +35,7 @@ All scripts use an innovative **two-character option scheme** based on syllables
### Core Options (consistent across scripts)
- `-to, --target-org` - **T**arget **O**rg
- `-hp, --help` - **H**el**P**
- `-vb, --verbose` - **V**er**B**ose
- `-ve, --verbose` - **V**er**B**ose
### File & I/O Options
- `-fl, --file` - **F**i**L**e
@@ -156,10 +156,10 @@ Display org information, limits, and list authenticated orgs.
**Usage:**
```bash
sf-org-info -to ORG [--limits] [--list] [-vb]
sf-org-info -to ORG [--limits] [--list] [-ve]
```
```powershell
sf-org-info.ps1 -to "myorg" -Limits -vb
sf-org-info.ps1 -to "myorg" -Limits -ve
```
**Examples:**
@@ -168,7 +168,7 @@ sf-org-info.ps1 -to "myorg" -Limits -vb
sf-org-info -to MyOrg
# Show limits and verbose info
sf-org-info -to MyOrg --limits -vb
sf-org-info -to MyOrg --limits -ve
```
### sf-retrieve / sf-retrieve.ps1
@@ -368,11 +368,11 @@ Environment verification tool that checks if the Salesforce CLI is properly inst
**Usage:**
```bash
sf-check [-vb] [-hp]
sf-check [-ve] [-hp]
```
**Options:**
- `-vb, --verbose` - Verbose output (show detailed information)
- `-ve, --verbose` - Verbose output (show detailed information)
- `-hp, --help` - Show help
**Examples:**
@@ -381,7 +381,7 @@ sf-check [-vb] [-hp]
sf-check
# Verbose output with detailed system information
sf-check -vb
sf-check -ve
```
**What it checks:**