15 lines
207 B
Bash
Executable file
15 lines
207 B
Bash
Executable file
#! /bin/zsh
|
|
|
|
setopt EXTENDED_GLOB
|
|
|
|
cave purge --complete
|
|
|
|
echo -n '>>> Type "yes" to do the above. '
|
|
read Q
|
|
|
|
if [[ $Q == "yes" ]]; then
|
|
echo ">>> Aight."
|
|
cave purge --complete -x
|
|
fi
|
|
|
|
cave fix-linkage ${1}
|