diff options
Diffstat (limited to 'lb')
-rwxr-xr-x | lb | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -6,10 +6,11 @@ source /etc/libretools.conf command=$1; shift -[[ ! -f ~/l/libre${command} ]] && { +[[ ! -x ~/l/libre"${command}" ]] && { error "Command not found" + exit 1 } -~/l/libre${command} $@ +~/l/libre${command} "$@" exit $? |