mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-23 18:14:54 +08:00
8 lines
85 B
Bash
Executable File
8 lines
85 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if egrep -q "($1.*cinstall.*)" /proc/mounts; then
|
|
echo 1
|
|
else
|
|
echo 0
|
|
fi
|