]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - shell/aliases.in
shell/aliases: add rs alias for reset
[config/dotfiles.git] / shell / aliases.in
1 # Aliases and similar functions which can be used by all shells (supporting
2 # them).
3
4 # Copyright (C) 2011-2015  Simon Ruderich
5 #
6 # This file is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This file is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
18
19
20 # Shortcuts for often used programs.
21 alias c=clear
22 alias d=cd
23 alias e=elinks
24 alias g=git
25 alias h=htop
26 alias l=ls
27 alias m=make
28 alias p=less # p for pager
29 alias s=ssh
30 alias t=tig
31 alias v=vim
32 alias x=exit
33 # Shortcuts for a little less used programs.
34 alias gr=grep
35 alias gri='grep -i'
36 alias grr='grep -r'
37 alias grri='grep -ri'
38 alias mc='make clean'
39 alias mj='make -j'
40 alias mu=mutt
41 alias rs=reset # like git's reset alias
42 alias sa='ssh-add -t 1h'
43 alias te=tree
44 # systemd ... (sc is provided as shell script for better completoin)
45 alias jc=journalctl
46 alias lc=loginctl
47
48
49 unalias mv cp 2>/dev/null
50 # Ask for confirmation before overwriting files. Especially useful when moving
51 # to a different directory. No alias for `rm` because I specify the files to
52 # remove directly, so I know what will happen.
53 alias mv='mv -i'
54 # Additionally preserve all file attributes when copying, this includes
55 # copying symbolic links as is without dereferencing them.
56 alias cp='cp -i -a'
57
58
59 # Make sure there is no alias named ls as it causes problems with the
60 # following ls function on (at least) bash 4.0.35.
61 unalias ls 2>/dev/null
62 # Improved ls which displays the files in columns (-C), visualizes
63 # directories, links and other special files (-F) and pages everything through
64 # less.
65 #
66 # If available use GNU ls with colorized output. If it isn't available try
67 # normal ls which needs CLICOLOR_FORCE so it displays colors when used with a
68 # pager. If none work no colors are used.
69 #
70 # See `setup.sh` for details. LS_* are replaced with the appropriate values
71 # when this file is generated.
72 ls() {
73     LS_ENV command ls LS_COLOR LS_OPTIONS -C -F "$@" 2>&1 | less
74 }
75
76 unalias ll lt la lal lat 2>/dev/null
77 # List the files in list format with access rights, etc.
78 alias ll='ls -l'
79 # List the files sorted by last modification date.
80 alias lt='ls -l -t'
81 # List all files.
82 alias la='ls -a'
83 # List all files in list format with access rights, etc.
84 alias lal='ls -al'
85 # List all files sorted by last modification date.
86 alias lat='ls -al -t'
87
88
89 # Make going up directories simple.
90 alias ..='cd ..'
91 alias ...='cd ../..'
92 alias ....='cd ../../..'
93 alias .....='cd ../../../..'
94
95 # Automatically use unified diffs.
96 alias diff='diff -u'
97
98 # COLUMN is set to `| column -t` if it's available, empty otherwise.
99
100 # Display all files (-s), use human readable sizes (-h) and display the
101 # complete size (-c).
102 alias du='du -shc'
103 # Use human readable sizes and format it nicely, thanks to climagic
104 # (http://twitter.com/climagic/status/49623386762129408).
105 df() {
106     command df -hP "$@" COLUMN
107 }
108
109 # Highlight matched strings. Doesn't work with a pager!
110 alias grep='grep --color=auto'
111
112 # Pipe output through less.
113 tree() {
114     command tree -C "$@" | less
115 }
116
117 # Better viewer for info pages .. just pipe everything into less.
118 info() {
119     command info "$@" 2>/dev/null | less
120 }
121
122 # vim: ft=sh