mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-09 04:42:21 +08:00
15 lines
242 B
Bash
Executable File
15 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
dpkg -l | grep "^ii $1 " > /dev/null
|
|
RET="$?"
|
|
if [[ "$RET" == "0" ]] ;then
|
|
apt autopurge $1 -y
|
|
else
|
|
|
|
if command -v bookworm-run > /dev/null;then
|
|
echo "Try ACE Bookworm"
|
|
bookworm-run apt autopurge $1 -y
|
|
|
|
fi
|
|
fi
|
|
exit "$RET"
|