sorted alias out
This commit is contained in:
17
profile.conf
17
profile.conf
@@ -70,26 +70,41 @@ MAKEFLAGS='-j12'
|
|||||||
PKGSOURCES='/share/src/archives'
|
PKGSOURCES='/share/src/archives'
|
||||||
|
|
||||||
[aliases]
|
[aliases]
|
||||||
|
# Aliases section is used to set user aliases, it is loaded only for
|
||||||
|
# interactive shells.
|
||||||
|
# Various ls aliases
|
||||||
ll='ls -laFh --color=auto'
|
ll='ls -laFh --color=auto'
|
||||||
la='ls -Ah --color=auto'
|
la='ls -Ah --color=auto'
|
||||||
l='ls -CF --color=auto'
|
l='ls -CF --color=auto'
|
||||||
ls='ls --color=auto'
|
ls='ls --color=auto'
|
||||||
|
|
||||||
|
# Add color to grep output
|
||||||
grep='grep --color=auto'
|
grep='grep --color=auto'
|
||||||
egrep='egrep --color=auto'
|
egrep='egrep --color=auto'
|
||||||
fgrep='fgrep --color=auto'
|
fgrep='fgrep --color=auto'
|
||||||
|
|
||||||
|
# Quick find alias
|
||||||
qfind="find . -name "
|
qfind="find . -name "
|
||||||
|
|
||||||
|
# Some alias for compiling
|
||||||
|
mk='make'
|
||||||
mkck='make check'
|
mkck='make check'
|
||||||
mkin='make install'
|
mkin='make install'
|
||||||
mkdin='make DESTDIR=$PWD/dest-install install'
|
mkdin='make DESTDIR=$PWD/dest-install install'
|
||||||
|
|
||||||
|
# ssh alias with X11 forwarding, without right restriction
|
||||||
ssh='ssh -Y'
|
ssh='ssh -Y'
|
||||||
|
|
||||||
|
# Resume mode for wget
|
||||||
wget='wget -c' # resume mode by default
|
wget='wget -c' # resume mode by default
|
||||||
myip='curl ip.appspot.com'
|
|
||||||
|
|
||||||
# Human readable by default
|
# Human readable by default
|
||||||
df='df -H'
|
df='df -H'
|
||||||
du='du -ch'
|
du='du -ch'
|
||||||
sdu='du -sk ./* | sort -n'
|
sdu='du -sk ./* | sort -n'
|
||||||
hdu='du -hs ./* | sort -H'
|
hdu='du -hs ./* | sort -H'
|
||||||
|
|
||||||
|
# Readable dmesg timestamps
|
||||||
|
dmesg='dmesg -T'
|
||||||
|
|
||||||
|
# End of profile.conf
|
||||||
|
|||||||
Reference in New Issue
Block a user