mirror of
https://github.com/byReqz/netdiscover-docker.git
synced 2024-11-22 09:31:15 +00:00
13 lines
225 B
Bash
13 lines
225 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -z "$port" ]];then
|
||
|
port=8080
|
||
|
fi
|
||
|
if [[ -n "$userpass" ]];then
|
||
|
creds="-c "$userpass""
|
||
|
fi
|
||
|
if [[ -z "$title" ]];then
|
||
|
title=netdiscover-docker
|
||
|
fi
|
||
|
./gotty -p "$port" $creds --title-format "$title" netdiscover
|