Dotfiles/.aliases
Jordan Bancino dcf7b494a3 Initial Alpine Linux Dotfiles.
After having jumped from Arch to OpenBSD to FreeBSD, now I'm back
on Linux and have chosen Alpine. I want to clean up all the cruft
that has accumulated over the years. Many programs that were in my
dotfiles I no longer use.

So, these dotfiles are a drastically simplified view of my old
dotfiles, which I have created so I can start fresh.

The .profile and .ashrc are meant to be entirely POSIX, so they
should work on any shell.
2024-01-06 09:08:11 -05:00

14 lines
201 B
Text

alias cp='cp -v'
alias mv='mv -v'
alias rm='rm -v'
alias ls='ls -lhF'
alias exit='clear; exit'
alias arsync="rsync --delete -av"
alias tmux="tmux -2"
alias vi="vim"
calc() {
perl -e "print($*);"
}