add nsgrep to find open ports easily

This commit is contained in:
Rico Ullmann 2016-04-24 14:40:07 +02:00
parent a3864572f5
commit 2f614ca561
1 changed files with 17 additions and 0 deletions

View File

@ -42,3 +42,20 @@ function psgrep --description 'show matching processes for $argv'
end
end
function nsgrep --description 'show open ports for $argv'
switch (count $argv)
case 0
echo -e "No argument given!\nDo you expect me to guess what you're looking for?"
return 1
case 1
netstat -tulpen | grep $1 | grep -v grep
case \*
echo "Only 1 arguemnt is valid!"
return 1
end
end