summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/pdftex-quiet
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-11-15 22:21:51 +0000
committerKarl Berry <karl@freefriends.org>2018-11-15 22:21:51 +0000
commitb2beb6e5bdbda328a3bd0a5a1ab3b96d97472814 (patch)
tree04672e3f2bea788a9eaf180ea6b09e2bf49d3f6a /Master/texmf-dist/doc/support/pdftex-quiet
parent0b4ca5651a82505c8ca208424642dfa9fdcd3464 (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')
-rw-r--r--Master/texmf-dist/doc/support/pdftex-quiet/LICENCE4
-rw-r--r--Master/texmf-dist/doc/support/pdftex-quiet/README.md24
-rw-r--r--Master/texmf-dist/doc/support/pdftex-quiet/VERSION2
3 files changed, 21 insertions, 9 deletions
diff --git a/Master/texmf-dist/doc/support/pdftex-quiet/LICENCE b/Master/texmf-dist/doc/support/pdftex-quiet/LICENCE
index e693f1865a8..a59e9c6fa83 100644
--- a/Master/texmf-dist/doc/support/pdftex-quiet/LICENCE
+++ b/Master/texmf-dist/doc/support/pdftex-quiet/LICENCE
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
pdftex-quiet
- Copyright (C) 2018 productivity
+ Copyright (C) 2018 Jiří Kozlovský <pdftex-quiet@jkozlovsky.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
- pdftex-quiet Copyright (C) 2018 productivity
+ pdftex-quiet Copyright (C) 2018 Jiří Kozlovský <pdftex-quiet@jkozlovsky.cz>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
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
diff --git a/Master/texmf-dist/doc/support/pdftex-quiet/VERSION b/Master/texmf-dist/doc/support/pdftex-quiet/VERSION
index 0ec25f7505c..795460fcec8 100644
--- a/Master/texmf-dist/doc/support/pdftex-quiet/VERSION
+++ b/Master/texmf-dist/doc/support/pdftex-quiet/VERSION
@@ -1 +1 @@
-v1.0.0
+v1.1.0