├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── cmd └── mmv │ └── main.go ├── go.mod ├── go.sum ├── mmv.go └── mmv_test.go /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/README.md -------------------------------------------------------------------------------- /cmd/mmv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/cmd/mmv/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/go.sum -------------------------------------------------------------------------------- /mmv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/mmv.go -------------------------------------------------------------------------------- /mmv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchyny/mmv/HEAD/mmv_test.go --------------------------------------------------------------------------------