Skip to content

Commit

Permalink
readme updated: working directory is now temp
Browse files Browse the repository at this point in the history
  • Loading branch information
dodeeric committed Jul 29, 2020
1 parent 292f401 commit 7cb850b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A Docker image is vailable on [my DockerHub repository](https://hub.docker.com/r
To convert myfile.pdf to myfile.epub, run the following command in the directory where the PDF file is located:

```
docker run -ti --rm -v `pwd`:/pdf dodeeric/pdf2epubex pdf2epubEX.sh myfile.pdf
docker run -ti --rm -v `pwd`:/temp dodeeric/pdf2epubex pdf2epubEX.sh myfile.pdf
```

The result will be: myfile.epub
Expand All @@ -49,15 +49,15 @@ You can also use *pdf2htmlEX* with this same Docker image:
To convert myfile.pdf to myfile.html, run the following command in the directory where the PDF file is located:

```
docker run -ti --rm -v `pwd`:/pdf dodeeric/pdf2epubex pdf2htmlEX myfile.pdf
docker run -ti --rm -v `pwd`:/temp dodeeric/pdf2epubex pdf2htmlEX myfile.pdf
```

The result will be: myfile.html

*pdf2htmlEX* has a lot of parameters. To see them:

```
docker run -ti --rm -v `pwd`:/pdf dodeeric/pdf2epubex pdf2htmlEX --help
docker run -ti --rm -v `pwd`:/temp dodeeric/pdf2epubex pdf2htmlEX --help
```

### Prerequisites
Expand Down

0 comments on commit 7cb850b

Please sign in to comment.