From 1e20e7640d2e0ebe2cea7ac00d2a86ab06b3abe5 Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Wed, 11 Apr 2012 19:13:07 +0100 Subject: [PATCH] Replace the pmine function with an alias --- modules/utility/init.zsh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index 52126e6b..dfd53871 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -40,10 +40,7 @@ function slit { } # Displays user owned process status. -function pmine { - ps "$@" -U "$USER" -o pid,%cpu,%mem,command -} -compdef _ps pmine 2> /dev/null +alias pmine='ps -U "$USER" -o pid,%cpu,%mem,command' # Finds files and executes a command on them. function find-exec {