mirror of
https://github.com/ViViDboarder/abuse-the-force.git
synced 2024-11-22 04:56:32 +00:00
15 lines
252 B
Ruby
Executable File
15 lines
252 B
Ruby
Executable File
#!/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
|