Skip to content

Instantly share code, notes, and snippets.

@fxthomas
Created June 16, 2011 23:50
Show Gist options
  • Save fxthomas/1030588 to your computer and use it in GitHub Desktop.
Save fxthomas/1030588 to your computer and use it in GitHub Desktop.
Bash Aliases
# 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