aboutsummaryrefslogtreecommitdiff
path: root/tlobsd
diff options
context:
space:
mode:
Diffstat (limited to 'tlobsd')
-rw-r--r--tlobsd6
1 files changed, 5 insertions, 1 deletions
diff --git a/tlobsd b/tlobsd
index 13ac99c..04187ba 100644
--- a/tlobsd
+++ b/tlobsd
@@ -1,6 +1,6 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3# $TeX Live for OpenBSD, 2024/04/27 $ 3# $TeX Live for OpenBSD, 2024/06/08 $
4 4
5cmd=$@ 5cmd=$@
6export tlobsd=1 6export tlobsd=1
@@ -13,6 +13,7 @@ Known actions to \033[1mtlobsd\033[0m:
13 \033[4mtlmgr\033[0m\t\tThis action accepts the exact same options and arguments as \033[4mtlmgr(1)\033[0m. 13 \033[4mtlmgr\033[0m\t\tThis action accepts the exact same options and arguments as \033[4mtlmgr(1)\033[0m.
14 \033[4mmksymlinks\033[0m\tUpdates all existing links in \033[4m${TLBINPATH}\033[0m 14 \033[4mmksymlinks\033[0m\tUpdates all existing links in \033[4m${TLBINPATH}\033[0m
15 \t\tand installs new links. 15 \t\tand installs new links.
16 \033[4mgetbiber\033[0m\tInstalls or updates biber executable for OpenBSD.
16 \033[4mversion\033[0m\tGives version information. 17 \033[4mversion\033[0m\tGives version information.
17" 18"
18} 19}
@@ -31,6 +32,9 @@ elif [[ $1 == "tlmgr" ]];then
31# symlinks 32# symlinks
32elif [[ $1 == "mksymlinks" ]];then 33elif [[ $1 == "mksymlinks" ]];then
33 tlobsd-mksymlinks $2 34 tlobsd-mksymlinks $2
35# getbiber
36elif [[ $1 == "getbiber" ]];then
37 tlobsd-getbiber
34# version 38# version
35elif [[ $1 == "version" ]];then 39elif [[ $1 == "version" ]];then
36 TL_RELEASE=$(tlmgr version | awk 'FNR == 3 { print $0 }') 40 TL_RELEASE=$(tlmgr version | awk 'FNR == 3 { print $0 }')