mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 10:17:14 +08:00
10 lines
164 B
Plaintext
10 lines
164 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
is_bundle=$(cat /proc/mounts | egrep "($1+.*cinstall.*)" | wc -l)
|
||
|
|
||
|
if [ $is_bundle -eq 1 -o $is_bundle -gt 1 ]; then
|
||
|
echo 1
|
||
|
else
|
||
|
echo 0
|
||
|
fi
|