mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-07 23:02:40 +02:00
8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
infodir='/usr/share/info'
|
|
|
|
rm -f "$infodir"/dir
|
|
find "$infodir" \( -name "*.info" -o -name "*.info.gz" \) \
|
|
-exec install-info {} "$infodir"/dir \;
|