-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from janpipek/change-case
change-case --upper
- Loading branch information
Showing
3 changed files
with
36 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
# muren(mu)ltiple (ren)ames | ||
|
||
Command-line utility for filename manipulations. | ||
|
||
``` | ||
Usage: muren [OPTIONS] [COMMAND] | ||
Commands: | ||
set-ext Change extension | ||
prefix Prefix with string | ||
replace Replace parts of the name | ||
normalize Convert names to reasonable ASCII. | ||
fix-ext Fix extension according to the file contents. | ||
remove Remove part of a name from all files. | ||
help Print this message or the help of the given subcommand(s) | ||
set-ext Change extension | ||
prefix Prefix with string | ||
replace Replace parts of the name | ||
normalize Convert names to reasonable ASCII. | ||
fix-ext Fix extension according to the file contents. | ||
remove Remove part of a name from all files. | ||
change-case Change case of all files. | ||
help Print this message or the help of the given subcommand(s) | ||
Options: | ||
-d, --dry Dry run | ||
-y, --yes Automatically confirm all actions | ||
-h, --help Print help | ||
-V, --version Print version | ||
-d, --dry Dry run | ||
-u, --unchanged Show unchanged files | ||
-y, --yes Automatically confirm all actions | ||
-h, --help Print help | ||
-V, --version Print version | ||
``` | ||
|
||
## Why not [rnr](https://github.com/ismaelgv/rnr)? | ||
|
||
Because this project scratches my particular itch and allows me to try/learn rust. | ||
Because this project scratches my particular itch and allows me to try/learn rust. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters