diff options
author | Florian Pritz <f-p@gmx.at> | 2009-02-04 19:00:42 +0100 |
---|---|---|
committer | Florian Pritz <f-p@gmx.at> | 2009-02-04 19:00:42 +0100 |
commit | b1dedad723cb5c08b9ccc173c85721f4d71fc7ad (patch) | |
tree | 3603e157fc30fe536abdf2126b6da05192e6500e | |
parent | 37f14dc9efd6bef448ec6895ba4526402f8f99eb (diff) | |
download | dotfiles-b1dedad723cb5c08b9ccc173c85721f4d71fc7ad.tar.gz dotfiles-b1dedad723cb5c08b9ccc173c85721f4d71fc7ad.tar.xz |
fixed sudo aliases
-rw-r--r-- | .zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -239,6 +239,7 @@ alias newpkgb=' cp $HOME/misc/aur/PKGBUILD.proto PKGBUILD' # well I got used to that name ;) alias aurball='makepkg --source -f' +alias sudo="sudo " #Sudo wont recognize aliases without this alias s='sudo' alias x='x -v' alias u='upload.sh' @@ -310,7 +311,7 @@ rc () { sudo /etc/rc.d/$1 $2 } -# usefull if you have more machines and want to easily update that config here +# usefull if you have more machines and want to easily update the config here update_zshrc () { wget http://flo.server-speed.net/stuff/dotfiles/zshrc -O ${HOME}/.zshrc } @@ -320,7 +321,6 @@ bk() { cp -b ${1} ${1}_`date +%Y-%m-%d_%T` } -# some colors! # idea see below cd() { builtin cd $@ && |