#!/bin/sh
# 查找端口pid
if [ $# == 1 ]
then
  netstat -antp|grep $1|awk '{c=$7;split(c,d,"/");print match(d[1],/\d+/)?d[1]:-1}'
else
 echo port param not found!
fi