Make bashrc more efficient: Difference between revisions
Created page with "<syntaxhighlight lang="bash" line> export EDITOR=emacs alias s='ls -hl' alias sb='source ~/.bashrc' alias sp='poweroff' alias sr='reboot' </syntaxhighlight>" |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
alias s='ls -hl' | alias s='ls -hl' | ||
alias eb='emacs ~/.bashrc' | |||
alias sb='source ~/.bashrc' | alias sb='source ~/.bashrc' | ||
alias sp='poweroff' | alias sp='poweroff' | ||
alias sr='reboot' | alias sr='reboot' | ||
alias as='apt search --names-only' | |||
alias ai='sudo apt install' | |||
alias au='sudo apt update' | |||
alias rmd='rm -rf' | |||
alias du='du -d 1 -hl' | |||
</syntaxhighlight> | </syntaxhighlight> |