blob: 23953346d7287dee2701c07d8e334fc3693e3de3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
# Pass output of french-conjugator to less
# To install french-conjugator on GNU/Linux, run:
# $ sudo apt install verbiste
function con()
{
french-conjugator "$@" 2>&1 | \
less --quit-if-one-screen
}
|