From 77871f1a4b881e9c27bd4a2423f793cc9a46a689 Mon Sep 17 00:00:00 2001 From: Rico Ullmann Date: Sun, 24 Apr 2016 15:31:12 +0200 Subject: [PATCH] fix typo --- init.fish | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.fish b/init.fish index d459708..001ecb0 100644 --- a/init.fish +++ b/init.fish @@ -37,7 +37,7 @@ function psgrep --description 'show matching processes for $argv' ps aux | grep $argv | grep -v grep case \* - echo "Only 1 arguemnt is valid!" + echo "Only 1 argument is valid!" return 1 end @@ -54,7 +54,7 @@ function nsgrep --description 'show open ports for $argv' netstat -tulpen | grep $1 | grep -v grep case \* - echo "Only 1 arguemnt is valid!" + echo "Only 1 argument is valid!" return 1 end @@ -70,7 +70,7 @@ function randpw --description 'generate a password' tr -dc 'a-zA-Z0-9_@#%&,;()-' < /dev/urandom | head -c$argv;echo; case \* - echo "Only none or 1 arguemnt is valid!" + echo "Only none or 1 argument is valid!" return 1 end