Create xr script - xbps-remove
This commit is contained in:
parent
b6906e65a9
commit
2638f4a240
|
@ -0,0 +1,25 @@
|
|||
#!/bin/sh
|
||||
# xr PKGS... - like xbps-remove -o, but take sudo/su into account
|
||||
|
||||
which_sudo() {
|
||||
if command -v sudo >/dev/null && sudo -l | grep -q -e ' ALL$' -e xbps-remove; then
|
||||
echo sudo
|
||||
elif command -v doas >/dev/null && [ -f /etc/doas.conf ]; then
|
||||
echo doas
|
||||
elif [ "$(id -u)" != 0 ]; then
|
||||
echo su
|
||||
fi
|
||||
}
|
||||
|
||||
do_remove() {
|
||||
if [ "$SUDO" = su ]; then
|
||||
su root -c 'xbps-remove "$@"' -- sh "$@"
|
||||
else
|
||||
$SUDO xbps-remove "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
SUDO=$(which_sudo)
|
||||
do_remove -R "$@"
|
||||
|
||||
exit $?
|
|
@ -16,6 +16,4 @@ alias xqm="xq -m"
|
|||
alias xql="xq -l"
|
||||
alias xqq="xql | grep ${1}"
|
||||
|
||||
# xbps-remove
|
||||
alias xr="doas xbps-remove -R"
|
||||
alias xcln="xr -o"
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
PATH=~/.local/bin:$PATH
|
||||
|
||||
#################################
|
||||
# - bash_aliases
|
||||
# - bash-completion
|
||||
|
|
Loading…
Reference in New Issue