You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
848 B
41 lines
848 B
# Alias |
|
if [[ "$OS_TYPE" != "gnu-linux" ]]; then |
|
alias python='python3' |
|
fi |
|
|
|
# rlwrap provides readline wrapping for programs. |
|
# This alias makes the SBCL REPL usable. |
|
alias sbcl='rlwrap sbcl' |
|
|
|
# Useful git aliases |
|
alias gita='git add' |
|
alias gitap='git add -p' |
|
alias gitc='git commit' |
|
alias gitp='git push' |
|
alias gits='git status' |
|
alias gitd='git diff' |
|
|
|
alias k8='kubectl' |
|
|
|
# Good overrides |
|
|
|
# Don't nuke the computer |
|
alias rm='rm -i' |
|
|
|
# Better ls - lists more information for each file |
|
alias ll='ls -lh' |
|
|
|
# Human readable ls for the current directory |
|
if [[ "$OS_TYPE" != "gnu-linux" ]]; then |
|
# OS X lt |
|
alias lt='du -sh * | sort -h' |
|
else |
|
alias lt='ls --human-readable --size -1 -S --classify' |
|
fi |
|
|
|
|
|
# Count files in the current directory |
|
alias count='find . -type f | wc -l' |
|
|
|
# Generate sha1 hashes on the fly |
|
alias sha1='openssl sha1'
|
|
|