21 lines
524 B
Bash
Executable File
21 lines
524 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Update package lists
|
|
apt update
|
|
|
|
# Install Git
|
|
# apt install -y git
|
|
tlmgr install preprint
|
|
|
|
# installation de grammalecte
|
|
apt install python3 unzip wget -y
|
|
mkdir /root/.grammalecte
|
|
cd /root/.grammalecte
|
|
wget https://grammalecte.net/zip/Grammalecte-fr-v2.1.1.zip
|
|
unzip Grammalecte-fr-v2.1.1.zip
|
|
|
|
#Installation de plantuml
|
|
cd /tmp/
|
|
wget https://github.com/plantuml/plantuml/releases/download/v1.2025.10/plantuml-1.2025.10.jar
|
|
mkdir /usr/share/plantuml/
|
|
mv plantuml-1.2025.10.jar /usr/share/plantuml/plantuml.jar |