diff options
author | Thomas Voss <mail@thomasvoss.com> | 2022-11-05 17:05:17 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2022-11-05 17:05:17 +0100 |
commit | 8a7054ef7a7c7a6f1ccd507e6921f69c07abfeec (patch) | |
tree | b39f32a3d037a29b4c7323666e91d9be5d3b90d6 | |
parent | 2167c104bdb52f46498f15440b1e391be308f821 (diff) |
Add notice about v1.0.0
-rw-r--r-- | README.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -1,10 +1,24 @@ +# NOTE FOR USERS THAT WANT TO TRY THIS OUT! + +The current code on the master branch doesn’t work as documented, as a newer +more powerful interface is being developed. For the doucmented interface, you +want to build the latest stable tag: + +```console +$ git clone <clone url> +$ cd mmv +$ git checkout tags/v1.0.0 -b v1.0.0-master +$ cargo build -r +$ make install +``` + # mmv — multi move `mmv` is a command-line utility to move multiple files in a more convenient manner than for-loops. The best way to explain this is with an example. Say you had the following files in the current directory: -```sh +```console $ ls 'The Fellowship of the Ring.mp4' 'The Two Towers.mp4' 'The Return of the King.mp4' |