22 lines
460 B
Plaintext
22 lines
460 B
Plaintext
# Configuration file for compare_dirs.sh
|
|
|
|
# Default directory paths
|
|
DIR1="/path/to/dir1"
|
|
DIR2="/path/to/dir2"
|
|
|
|
# Path to words file
|
|
WORDS_FILE="./words"
|
|
|
|
# Similarity threshold (0.0-1.0)
|
|
SIMILARITY_THRESHOLD=0.8
|
|
|
|
# Enable/disable dry run mode (true/false)
|
|
DRY_RUN=false
|
|
|
|
# Number of parallel processes to use (0 = auto)
|
|
PARALLEL_PROCESSES=0
|
|
|
|
# Logging configuration
|
|
LOG_ENABLED=true
|
|
LOG_FILE="./compare_dirs.log"
|
|
LOG_LEVEL="INFO" # DEBUG, INFO, WARNING, ERROR |