8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd *
|
|
|
|
for ttf in *.ttf
|
|
do
|
|
install -Dm644 $ttf "$1/usr/share/fonts/TTF/$ttf"
|
|
done |