diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-01-23 10:48:01 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-01-23 10:48:01 +0100 |
commit | 8a86a077c8721bea6c5255e34e07b40f21dc3585 (patch) | |
tree | c59dadb0ed342ea2c268350308d87fcc0585961e /zsh/zshrc | |
parent | 77a16b6e4f2407b3bbee6c5eb8ea3c040b5aadfa (diff) |
Add fedora stuff
Diffstat (limited to '')
-rw-r--r-- | zsh/zshrc | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -55,14 +55,15 @@ precmd() { fi } +# Shell stuff alias c="clear && fortune" - alias ls="ls --color=auto" alias l="ls -lah" alias mkdir="mkdir -p" alias rmrf="rm -rf" alias v="vim" +# General stuff alias g='git' alias gee='geeqie' alias gitserv="git daemon --verbose --reuseaddr --base-path=. --export-all ./.git" @@ -75,7 +76,9 @@ alias s="screen -r -d" alias t="tmux a" alias tmux='tmux -u' alias vbm="VBoxManage" +alias httpd="python -m SimpleHTTPServer" +# Debian stuff alias agu="sudo apt-get update" alias agdu="sudo apt-get dist-upgrade" alias acs="apt-cache search" @@ -83,6 +86,12 @@ alias agi="sudo apt-get install" alias as="apt-cache show" alias purge="sudo apt-get --purge autoremove" +# Fedora stuff +alias yi="sudo yum install" +alias yr="sudo yum remove" +alias ys="yum search" + +# VCS stuff alias svn-uscan='uscan --verbose --force-download --rename --repack --destdir=../tarballs' alias svn-bp='svn-buildpackage --svn-builder=pdebuild --svn-ignore-new' alias gendebpool='dpkg-scanpackages -m . /dev/null | gzip -9c > Packages.gz' |