You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# File output (gzip by default, .gpscan is auto-appended)
gpscan . -o result
# Plain text file output (no gzip)
gpscan . -o result --no-gzip
# Gzip to stdout (useful for piping/redirect)
gpscan . -z > result.gpscan
File output (-o) defaults to gzip and adds the .gpscan suffix automatically.
When the target file already exists: in TTY, a prompt asks to overwrite; in non-interactive mode, use --force.
Options
-o, --output <FILE> Output file (gzip by default, adds .gpscan)
-A, --apparent-size Use apparent size instead of disk usage
-m, --mounts Cross filesystem boundaries during scan
-Z, --zero-files Include zero-byte files in scan
-E, --empty-folders Include empty folders in scan
-q, --quiet Suppress all informational messages
-z, --gzip Gzip-compress stdout (file output is gzip by default)
--compression-level <0-9> Gzip level for output (default: 6)
--no-gzip Disable gzip for file output
-f, --force Overwrite output file without prompt
-h, --help Print help
-V, --version Print version
Environment Variables
RUST_LOG: Set logging level (e.g., RUST_LOG=debug gpscan /path)