aboutsummaryrefslogtreecommitdiffstats
path: root/hyperterm/tools/aliases.sh
blob: 485039f599e804ed7b7efeca3b03591f4c88d713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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=<-"'