mirror of
https://github.com/cupcakearmy/hauptseminar-rechnernetze.git
synced 2024-12-22 16:16:30 +00:00
7 lines
160 B
Bash
7 lines
160 B
Bash
#!/bin/sh
|
|
|
|
TARGET=~/.fonts
|
|
mkdir -p $TARGET
|
|
unzip -o -d "$TARGET/roboto_mono" "./fonts/Roboto_Mono.zip"
|
|
unzip -o -d "$TARGET/open_sans" "./fonts/Open_Sans.zip"
|