mirror of
https://github.com/ViViDboarder/abuse-the-force.git
synced 2024-11-22 11:36:36 +00:00
15 lines
252 B
Plaintext
15 lines
252 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
require 'rubygems'
|
||
|
#require 'bundler/setup'
|
||
|
require 'abusetheforce'
|
||
|
|
||
|
begin
|
||
|
require 'abusetheforce/cli'
|
||
|
AbuseTheForce::AtfCLI.start
|
||
|
rescue Interrupt => e
|
||
|
puts "\nQuitting..."
|
||
|
exit 1
|
||
|
rescue SystemExit => e
|
||
|
exit e.status
|
||
|
end
|