magellan/bin/magellan.sh
David J. Allen 8faa570b0a Minor tweaks, changes, and fixes
Signed-off-by: David J. Allen <davidallendj@gmail.com>
2023-09-14 13:41:12 -06:00

17 lines
254 B
Bash

function build(){
go mod tidy && go build -C bin/magellan
}
function scan() {
./magellan scan --subnet 172.16.0.0 --port 443
}
function list(){
./magellan list
}
function collect() {
./magellan collect --user admin --pass password
}