6 lines
109 B
Bash
Executable File
6 lines
109 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
for file in ttf/*.ttf; do
|
|
install -Dm644 "$file" "$1/usr/share/fonts/TTF/${file##*/}"
|
|
done
|