Alias busybox pgrep/pkill only if apples are available
The Debian busybox does not provide those applets. This makes no difference for PostmarketOS as they are an alias to busybox. Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
This commit is contained in:
parent
50f58e9ec3
commit
cafd100d28
1 changed files with 5 additions and 2 deletions
|
@ -34,8 +34,11 @@ alias dmenu="sxmo_dmenu.sh"
|
|||
alias st="sxmo_terminal.sh"
|
||||
|
||||
alias find="busybox find"
|
||||
alias pkill="busybox pkill"
|
||||
alias pgrep="busybox pgrep"
|
||||
# Use native commands if busybox was compile without those apples (for example Debians busybox)
|
||||
if busybox pkill -l > /dev/null; then
|
||||
alias pkill="busybox pkill"
|
||||
alias pgrep="busybox pgrep"
|
||||
fi
|
||||
alias xargs="busybox xargs"
|
||||
alias less="busybox less"
|
||||
alias tail="busybox tail"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue