-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHEAT_SHEET.txt
More file actions
32 lines (27 loc) · 1.26 KB
/
CHEAT_SHEET.txt
File metadata and controls
32 lines (27 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
==========================================
FILE DEDUPLICATOR - QUICK REFERENCE
==========================================
BASIC USAGE
------------------------------------------
python deduplicator.py <directory> Find duplicates
python deduplicator.py <dir> --dry-run Safe preview mode
python deduplicator.py <dir> --action delete Delete duplicates
python deduplicator.py <dir> --action move --move-to ./dups Move duplicates
FILTERING
------------------------------------------
--min-size 1MB Minimum file size
--max-size 100MB Maximum file size
--extensions .jpg,.png File types only
--exclude node_modules,.git Skip directories
OUTPUT
------------------------------------------
--export json --output report.json JSON report
--export csv --output report.csv CSV report
--verbose Detailed output
--quiet Minimal output
SAFETY
------------------------------------------
--dry-run Preview only
--interactive Confirm each deletion
--threads 4 Parallel processing
==========================================