代码拉取完成,页面将自动刷新
#!/bin/sh
# The ARP Scanner (arp-scan) is Copyright (C) 2005-2016 Roy Hills,
# NTA Monitor Ltd.
#
# This file is part of arp-scan.
#
# arp-scan is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# arp-scan is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with arp-scan. If not, see <http://www.gnu.org/licenses/>.
#
# check-run1 -- Shell script to test arp-scan basic functionality
#
# Author: Roy Hills
# Date: 9 March 2006
#
# This shell script checks that "arp-scan --help" and "arp-scan --version"
# work. These options don't use much of the arp-scan functionality, so if
# they fail, then there is a fundamental problem with the program.
#
TMPFILE=/tmp/arp-scan-test.$$.tmp
#
echo "Checking arp-scan --help ..."
$srcdir/arp-scan --help > $TMPFILE
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
grep '^Report bugs or send suggestions at ' $TMPFILE >/dev/null
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
echo "ok"
#
echo "Checking arp-scan --version ..."
$srcdir/arp-scan --version > $TMPFILE
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
grep '^Copyright (C) ' $TMPFILE >/dev/null
if test $? -ne 0; then
rm -f $TMPFILE
echo "FAILED"
exit 1
fi
echo "ok"
#
rm -f $TMPFILE
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。