summaryrefslogtreecommitdiff
path: root/conjugatorless.sh
diff options
context:
space:
mode:
Diffstat (limited to 'conjugatorless.sh')
-rwxr-xr-xconjugatorless.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/conjugatorless.sh b/conjugatorless.sh
new file mode 100755
index 0000000..2395334
--- /dev/null
+++ b/conjugatorless.sh
@@ -0,0 +1,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
+}
+
+