MultScan-cli is a command line interface for the MultScan project, created by @Pengrey.
Installation
Run go build in the src directory of the project to build the binary.
Or use the pre-built binary in the bin directory.
$ cd src
# Build for linux
$ GOOS=linux GOARCH=amd64 go build -o ../bin/multscan-cli_linux
# Build for windows (64-bit)
$ GOOS=windows GOARCH=amd64 go build -o ../bin/multscan-cli_64.exe
# Build for windows (32-bit)
$ GOOS=windows GOARCH=386 go build -o ../bin/multscan-cli_32.exe
# Build for mac
$ GOOS=darwin GOARCH=amd64 go build -o ../bin/multscan-cli_mac