mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 07:37:14 +08:00
10 lines
164 B
Bash
Executable File
10 lines
164 B
Bash
Executable File
#!/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
|