fc27eb467a
git-svn-id: file:///home/svn/framework3/trunk@10706 4d416f70-5f16-0410-b530-b9f4589650da
19 lines
354 B
Ruby
Executable File
19 lines
354 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
#
|
|
# $Id$
|
|
#
|
|
# Graphical user interface written in Java with rpc.
|
|
#
|
|
# $Revision$
|
|
#
|
|
|
|
#java -jar $(dirname $(readlink -n $0))/data/gui/msfgui.jar
|
|
|
|
msfbase = __FILE__
|
|
while File.symlink?(msfbase)
|
|
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
|
|
end
|
|
|
|
exec "java -jar #{File.dirname(msfbase)}/data/gui/msfgui.jar"
|
|
|