This commit is contained in:
neil 2016-03-11 22:17:35 +08:00
parent 1b2e940d6a
commit bce55f429b
1 changed files with 5 additions and 5 deletions

10
le.sh
View File

@ -342,15 +342,15 @@ _startserver() {
_NC="nc -q 1 -l"
nchelp="$(nc -h 2>&1)"
#centos
if echo "$nchelp" | grep "nmap.org/ncat" >/dev/null ; then
_NC="nc -l"
fi
if echo "$nchelp" | grep "--version" >/dev/null ; then
ncver="$(nc --version)"
if echo "$ncver" | grep "http://www.deepspace6.net" > /dev/null ; then
_NC="$_NC -p"
fi
#debian
ncver="$(nc --version 2>&1)"
if echo "$ncver" | grep "http://www.deepspace6.net" > /dev/null ; then
_NC="$_NC -p"
fi
_debug nc "$_NC"