blob: 22d862a266fd894646e95b405a473201773e94f5 (
plain)
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
|
#!/bin/bash
besure(){
read -n1 -rsp $'Press any key to continue.\nQuit with CTRL+C\n'
}
clear
[ $UID -eq 0 ] && echo "Do not run this with sudo." && exit 1
echo "Things to install:"
echo " * texlive"
echo " * make"
echo " * tree"
echo ""
besure
clear
sudo apt-get install texlive texlive-latex-recommended texlive-latex-extra texlive-lang-european make tree
echo ""
echo ""
echo ""
echo ""
besure
clear
make
clear
tree -l
echo "All done."
|