summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlb15
1 files changed, 15 insertions, 0 deletions
diff --git a/lb b/lb
new file mode 100755
index 0000000..d4bd908
--- /dev/null
+++ b/lb
@@ -0,0 +1,15 @@
+#!/bin/bash
+# LibreTools wrapper
+# License: GPLv3
+
+source /etc/libretools.conf
+
+command=$1; shift
+
+[[ ! -f ~/l/libre${command} ]] && {
+ error "Command not found"
+}
+
+~/l/libre${command} $@
+
+exit $?