Reorganize directory structure: move utility files to misc/ directory

- Move all non-wrapper files (testing scripts, documentation, utilities) to misc/ directory
- Keep SF CLI wrapper scripts and README.md in root directory for better organization
- Maintain clean root directory with only the actual wrapper scripts and main documentation
- All wrapper scripts remain easily accessible and discoverable
- Supporting files are organized in misc/ subdirectory
This commit is contained in:
reynold
2025-08-28 22:32:19 +08:00
parent f250f81753
commit 452e095f90
15 changed files with 24 additions and 0 deletions

View File

@@ -207,6 +207,12 @@ run_diagnostics() {
# Parse command line arguments
VERBOSE=false
# Show help if no arguments provided
if [[ $# -eq 0 ]]; then
show_help
exit 0
fi
# Parse arguments manually for two-character options
while [[ $# -gt 0 ]]; do
case $1 in

View File

@@ -120,6 +120,12 @@ USE_BULK=false
WAIT_TIME="10"
VERBOSE=false
# Show help if no arguments provided
if [[ $# -eq 0 ]]; then
show_usage
exit 0
fi
# Parse command line arguments
while [[ $# -gt 0 ]]; do
case $1 in

View File

@@ -168,6 +168,12 @@ BATCH_SIZE="10000"
IGNORE_ERRORS=false
VERBOSE=false
# Show help if no arguments provided
if [[ $# -eq 0 ]]; then
show_usage
exit 0
fi
# Parse command line arguments
while [[ $# -gt 0 ]]; do
case $1 in

View File

@@ -153,6 +153,12 @@ APEX_ONLY=false
NO_COLORS=false
VERBOSE=false
# Show help if no arguments provided
if [[ $# -eq 0 ]]; then
show_usage
exit 0
fi
# Parse command line arguments
while [[ $# -gt 0 ]]; do
case $1 in