Minor changes

This commit is contained in:
Sayantan Santra 2022-12-08 01:19:04 -06:00
parent fb407a9b9c
commit 8e07db9156
2 changed files with 2 additions and 1 deletions

View file

@ -6,7 +6,7 @@ This is made mostly due to [mnamer](https://github.com/jkwill87/mnamer) not havi
The expected syntax is: The expected syntax is:
`movie_rename <filename(s)> [--dry-run]` `movie_rename <filename(s)> [--dry-run] [--help]`
- There needs to be a config file names movie_rename.conf in your $XDG_CONFIG_HOME. - There needs to be a config file names movie_rename.conf in your $XDG_CONFIG_HOME.
- It should consist of two lines. The first line should have your TMDb API key. - It should consist of two lines. The first line should have your TMDb API key.
- The second line should have a pattern, that will be used for the rename. - The second line should have a pattern, that will be used for the rename.

View file

@ -70,6 +70,7 @@ fn main() {
println!( println!(
" Default pattern is `{{title}} ({{year}}) - {{director}}`. Extension is always kept." " Default pattern is `{{title}} ({{year}}) - {{director}}`. Extension is always kept."
); );
println!("Pass --help to get this again.");
exit(0); exit(0);
} }