Add --join to the README's usage

This commit is contained in:
Augusto Gunsch 2021-11-15 18:17:30 -03:00
parent 3aa66545ea
commit 13874b3363
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 14 additions and 1 deletions

View File

@ -9,7 +9,7 @@ pip install fsub
# Usage # Usage
``` ```
usage: fsub [-h] [-c] [-s MS] [-n] [-f FILE] file [file ...] usage: fsub [-h] [-c] [-s MS] [-n] [-f FILE] [-j] file [file ...]
Fix, edit and clean SubRip (.srt) files. Fix, edit and clean SubRip (.srt) files.
@ -26,6 +26,19 @@ optional arguments:
-f FILE, --config-file FILE -f FILE, --config-file FILE
overwrite the default config file (Unix: $HOME/.config/fsubrc, overwrite the default config file (Unix: $HOME/.config/fsubrc,
Windows: %APPDATA%\fsubrc) Windows: %APPDATA%\fsubrc)
-j, --join join all files into the first, shifting their time accordingly (this
will delete files)
```
# Testing
Run all the tests with:
```
python -m unittest tests
```
Or, just the unit/integration tests:
```
python -m unittest tests.unit
python -m unittest tests.integration
``` ```
# Features # Features