summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2012-05-06 00:53:25 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2012-05-06 00:54:58 +0200
commit4243e408b7a339eb7e769df9d4f063779977969c (patch)
tree389c8e46e9ebf4826e1b66f7dc3d8d09c0e44910
parent957c1a2599368d5cc628a67d7dcb48b951345481 (diff)
downloaddotfiles-4243e408b7a339eb7e769df9d4f063779977969c.tar.xz
zshrc: add the shred alias, and update pacman download alias
-rw-r--r--zshrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/zshrc b/zshrc
index f0ca08f..3da87fd 100644
--- a/zshrc
+++ b/zshrc
@@ -49,6 +49,7 @@ alias grep="grep --color=always"
alias cp="cp -ia"
alias mv="mv -i"
alias rm="rm -i"
+alias shred="shred -uz"
alias cls="clear"
alias upmem="ps -eo pmem,pcpu,rss,vsize,args | sort -k 1"
alias top="htop"
@@ -105,7 +106,7 @@ alias pacls="pacman -Ql" # List files in a package
alias pacui="pacman -Qm" # List localy built packages
alias pacfi="pacman -Qo" # Which package file belongs to
alias paccl="sudo pacman -Scc" # Fully clean the package cache
-alias pacdl="sudo pacman -Sw" # Download a package without installing
+alias pacdl="sudo pacman -Swdd" # Download a package without installing
alias paclo="pacman -Qdt" # List package orphans
alias paclog="pacman -Qc" # Package changelog
# }}}