-
Notifications
You must be signed in to change notification settings - Fork 68
/
tlmgr.sh
58 lines (45 loc) · 788 Bytes
/
tlmgr.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env sh
# Purpose : tlmgr support
# Author : Antony Lee
# License : MIT
# Date : July 26, 2018
# Copyright (C) 2018 Antony Lee
#
# Usage of the works is permitted provided that this instrument is
# retained with the works, so that any entity that uses the works is
# notified of this instrument.
#
# DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
_tlmgr_init() {
:
}
tlmgr_Qi() {
tlmgr info --only-installed "$@"
}
tlmgr_Qk() {
tlmgr check files
}
tlmgr_Ql() {
tlmgr info --only-installed --list "$@"
}
tlmgr_R() {
tlmgr remove "$@"
}
tlmgr_S() {
tlmgr install "$@"
}
tlmgr_Si() {
tlmgr info "$@"
}
tlmgr_Sl() {
tlmgr info
}
tlmgr_Ss() {
tlmgr search --global "$@"
}
tlmgr_Suy() {
tlmgr update --all
}
tlmgr_U() {
tlmgr install --file "$@"
}