1
0
Fork 0

use apt, su and pkill without typing sudo

This commit is contained in:
Luca Bilke 2022-08-07 12:55:21 +02:00
parent ffb11aad0f
commit 72e28e6cf2

View file

@ -1,5 +1,9 @@
#!/bin/sh
for command in apt su pkill ; do
alias $command="sudo $command"
done; unset command
# Verbosity and settings that you pretty much just always are going to want.
alias \
cp="cp -iv" \