mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 02:08:24 +00:00
10 lines
165 B
Bash
Executable File
10 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in *; do
|
|
if [ -d $f ]; then
|
|
$2 -m 755 -d $1/$f/man8
|
|
$2 -m 644 $f/dnsmasq.8 $1/$f/man8
|
|
echo installing $f/man8/dnsmasq.8
|
|
fi
|
|
done
|