mirror of
https://github.com/byReqz/conn.git
synced 2024-11-01 01:03:14 +00:00
small fixes
- added shebang - added response if no options or arguments are delivered
This commit is contained in:
parent
951efc6202
commit
c3aa98583b
11
conn.sh
11
conn.sh
@ -1,9 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
while [ ! -n "$1" ]; do
|
||||
echo "Usage: $0 (-m) <ip> (y/n)"
|
||||
echo "Options:"
|
||||
echo " -m/--multi -- test multiple ips / disable portscan"
|
||||
echo " -h/--help -- show help"
|
||||
exit
|
||||
done
|
||||
while [ ! -z "$1" ]; do
|
||||
if [[ "$1" == "--help" ]] || [[ "$1" == "-h" ]];then
|
||||
echo "Usage: $0 (-m) <ip> (y/n)"
|
||||
echo "Options:"
|
||||
echo " -m/--multi -- test multiple ips / disable portscan"
|
||||
printf " -h/--help -- show help"
|
||||
echo " -h/--help -- show help"
|
||||
exit
|
||||
elif [[ $1 == "-m" ]] || [[ "$1" == "--multi" ]];then
|
||||
echo "multi-ip mode, portscan disabled"
|
||||
|
Loading…
Reference in New Issue
Block a user