mirror of
https://gitlab.postmarketos.org/postmarketOS/pmaports.git
synced 2025-07-16 02:05:11 +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
|
|
|