diff options
author | Karl Berry <karl@freefriends.org> | 2018-11-15 22:21:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-11-15 22:21:51 +0000 |
commit | b2beb6e5bdbda328a3bd0a5a1ab3b96d97472814 (patch) | |
tree | 04672e3f2bea788a9eaf180ea6b09e2bf49d3f6a /Master/texmf-dist/doc/support/pdftex-quiet/README.md | |
parent | 0b4ca5651a82505c8ca208424642dfa9fdcd3464 (diff) |
pdftex-quiet (15nov18)
git-svn-id: svn://tug.org/texlive/trunk@49169 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/support/pdftex-quiet/README.md')
-rw-r--r-- | Master/texmf-dist/doc/support/pdftex-quiet/README.md | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/support/pdftex-quiet/README.md b/Master/texmf-dist/doc/support/pdftex-quiet/README.md index 49e0a2e5f4c..332932811e4 100644 --- a/Master/texmf-dist/doc/support/pdftex-quiet/README.md +++ b/Master/texmf-dist/doc/support/pdftex-quiet/README.md @@ -4,30 +4,39 @@ This is a tool in BASH serving to reduce the output of `pdftex` command and see Originally, I've started this as [the TeX StackExchange answer](https://tex.stackexchange.com/a/459470/134632). -Now, it's being proposed as a CTAN package called also `pdftex-quiet`. +Currently, [you can find this repository in a Comprehensive TeX Archive Network (CTAN)](https://ctan.org/pkg/pdftex-quiet) under `/support/pdftex-quiet`. -## Installation +## Quickinstall the latest version + +```bash +curl -s https://gitlab.com/jirislav/pdftex-quiet/raw/latest/pdftex-quiet | \ + sudo tee /usr/local/bin/pdftex-quiet >/dev/null \ + && sudo chmod +x /usr/local/bin/pdftex-quiet \ + && sudo ln -sf /usr/local/bin/pdf{,la}tex-quiet +``` + +## Installation from git Download this repository: ```bash -git clone https://gitlab.jkozlovsky.cz/productivity/pdftex-quiet.git +git clone https://gitlab.com/jirislav/pdftex-quiet.git cd pdftex-quiet ``` Simply copy the bash script to your `$PATH`: ```bash -cp bin/pdftex-quiet /usr/local/bin/ +cp pdftex-quiet /usr/local/bin/ chmod +x /usr/local/bin/pdftex-quiet # Make sure we support also pdflatex-quiet command (pdflatex is also a symlink to pdftex command) -ln -sf /usr/local/bin/pdftex-quiet /usr/local/bin/pdflatex-quiet +ln -sf /usr/local/bin/pdf{,la}tex-quiet ``` ## Usage -Usage is the same as with `pdftex` (it supports all the arguments except [COMMANDS], **but the filename is mandatory!**). +Usage is the same as with `pdftex` and `pdflatex` (it supports all the arguments except the `[COMMANDS]`, **but the filename is mandatory!**). ```bash # Keep in mind that the last argument should always be the filename to compile @@ -39,6 +48,9 @@ pdftex-quiet --help # But most probably you simply want to run the pdftex without modifications: pdftex-quiet my_tex_source.tex + +# Also you might want to use LaTeX instead: +pdflatex-quiet my_tex_source.tex ``` ## Licence |