19 lines
249 B
Bash
19 lines
249 B
Bash
wxi-stop(){
|
|
if [[ ! -f $HOME/bin/wx ]]
|
|
then
|
|
wx-install &> /dev/null
|
|
else
|
|
wx-update &> /dev/null
|
|
fi
|
|
|
|
# wxi-repeat "\n" 3
|
|
|
|
# for key in "${!args[@]}"
|
|
# do
|
|
# echo "$key: ${args[$key]}"
|
|
# done
|
|
|
|
wxi-repeat "\n" 3
|
|
exit 1
|
|
}
|