- Add -q/--quiet flag to suppress all output except errors - Add progress bar with 250ms refresh, file count, and ETA display - Print summary report to stderr on completion (files processed, skipped, failed, bytes, duration) - Support reading paths from stdin with "-" argument (e.g., find | attrsum sum add -) - Update README with new features and updated TODO section
28 lines
909 B
Modula-2
28 lines
909 B
Modula-2
module git.eeqj.de/sneak/attrsum
|
|
|
|
go 1.24.1
|
|
|
|
require (
|
|
github.com/bmatcuk/doublestar/v4 v4.8.1
|
|
github.com/mr-tron/base58 v1.2.0
|
|
github.com/multiformats/go-multihash v0.2.3
|
|
github.com/pkg/xattr v0.4.10
|
|
github.com/schollz/progressbar/v3 v3.19.0
|
|
github.com/spf13/cobra v1.9.1
|
|
)
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
|
github.com/minio/sha256-simd v1.0.0 // indirect
|
|
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
github.com/multiformats/go-varint v0.0.6 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
golang.org/x/term v0.28.0 // indirect
|
|
lukechampine.com/blake3 v1.1.6 // indirect
|
|
)
|