13 lines
464 B
Bash

#!/bin/bash
alias clean='cat /dev/null > "$HOME/.bash_history" && history -c'
alias df='df -h' # human-readable sizes
alias ep='emacs PKGBUILD'
alias free='free -hm' # show sizes in humans format
alias grep='grep --color=tty -d skip'
alias la='ls -la --color=auto -F'
alias ll='ls -l --color=auto -F'
alias ls='ls --color=auto -F'
alias np='nano PKGBUILD'
alias pastebin='curl -X POST https://bpa.st/curl -F "raw=<-"'