diff options
Diffstat (limited to 'lb')
-rwxr-xr-x | lb | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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 $? |