mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 14:02:33 +00:00
8 lines
199 B
Bash
Executable file
8 lines
199 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
export GEM_HOME=$PWD/gems
|
|
|
|
[ -e bettercap ] || git clone https://github.com/evilsocket/bettercap
|
|
cd bettercap
|
|
gem build bettercap.gemspec
|
|
gem install --no-rdoc --no-ri bettercap*.gem
|