8 lines
251 B
Bash
Executable File
8 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
# 删除软件缓存(留着也没什么用了)
|
|
# 缓存目录:~/.cache/deepin-wine-runner
|
|
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
|
|
rm -rf /usr/share/applications/gx-env-*.desktop
|
|
else
|
|
echo "非卸载,跳过清理"
|
|
fi |