Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,17 @@ $ export PATH=$PATH:$GOBIN
```

##### Mac OS
Download the MacOS package from [the releases page](https://github.com/VirusTotal/vt-cli/releases). Copy the file to a location in your PATH, then remove the quarantine flag.

For Mac OS users, there's a [brew formula](https://formulae.brew.sh/formula/virustotal-cli) available. Please note this is not maintained by VirusTotal.
```sh
$ unzip MacOSX.zip
$ mkdir -p $HOME/bin
$ mv vt $HOME/bin
$ export PATH=$PATH:$HOME/bin
$ xattr -d com.apple.quarantine $HOME/bin/vt
```

Alternative solution for Mac OS users, there's a [brew formula](https://formulae.brew.sh/formula/virustotal-cli) available. Please note this is not maintained by VirusTotal.

```sh
$ brew install virustotal-cli
Expand Down