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" _NC="nc -q 1 -l"
nchelp="$(nc -h 2>&1)" nchelp="$(nc -h 2>&1)"
#centos
if echo "$nchelp" | grep "nmap.org/ncat" >/dev/null ; then if echo "$nchelp" | grep "nmap.org/ncat" >/dev/null ; then
_NC="nc -l" _NC="nc -l"
fi fi
if echo "$nchelp" | grep "--version" >/dev/null ; then #debian
ncver="$(nc --version)" ncver="$(nc --version 2>&1)"
if echo "$ncver" | grep "http://www.deepspace6.net" > /dev/null ; then if echo "$ncver" | grep "http://www.deepspace6.net" > /dev/null ; then
_NC="$_NC -p" _NC="$_NC -p"
fi
fi fi
_debug nc "$_NC" _debug nc "$_NC"