Add --join to the README's usage
This commit is contained in:
parent
3aa66545ea
commit
13874b3363
15
README.md
15
README.md
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue