Created
June 16, 2011 23:50
-
-
Save fxthomas/1030588 to your computer and use it in GitHub Desktop.
Bash Aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This bash aliases were added by François-Xavier Thomas. | |
# You are free to copy, adapt or modify it. | |
# If you do so, however, leave my name somewhere in the credits, I'd appreciate it ;) | |
# Some more ls aliases | |
alias ll='ls -lth' | |
alias la='ls -ltha' | |
alias l='ls -CF' | |
## Personnal aliases | |
# Media players : Start in minimal view, with VDPAU | |
alias vlc='vlc --qt-minimal-view' | |
alias wg='wget -O - --no-check-certificate --quiet' | |
alias mstream='mplayer - -cache 20000' | |
# CUDA nvcc fix | |
alias nvcc='nvcc --compiler-options -fpermissive' | |
## Some useful stuff | |
# List IPTABLES rules | |
alias iptl='sudo iptables -L -n -v' | |
alias mtr='mtr --curses' | |
# Always show free disk space in human-readable format | |
alias df='df -h' | |
alias du='du -h' | |
# Show network connections | |
alias li='netstat -taupe' | |
# Copy with progress bar | |
alias cps='rsync --progress -hrc' | |
# Resume download | |
alias scpresume='rsync --progress --partial --rsh=ssh' | |
# W3M enable cookies | |
alias w3m='w3m -cookie -v' | |
# Upgrade full system | |
alias upgrade='yaourt -Sayu' | |
# Zip auto recurse | |
alias zip='zip -r' | |
alias d8='rlwrap d8' | |
# Read Mails | |
#alias maily='mail -f ~/.mbox' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment