mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 10:15:12 +03:00
9 lines
106 B
Bash
9 lines
106 B
Bash
#!/bin/sh
|
|
|
|
for i in "$@"; do
|
|
if ! [ -e "$i" ]; then
|
|
continue
|
|
fi
|
|
/usr/bin/gio-querymodules "$i"
|
|
done
|
|
|