7 lines
91 B
Bash
Executable File
7 lines
91 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
for file in TTF/*
|
|
do
|
|
install -Dm644 $file "$1/usr/share/fonts/TTF/"
|
|
done
|