qasim/sshfs-mapper.rb
2009-04-03 16:27:49 +00:00

33 lines
304 B
Ruby
Executable file

#!/usr/bin/ruby
require 'config'
class Map
def initialize()
end
def self.loadFromFile( filename )
end
end
class Config
end
class SshfsMapper
def initialize()
puts "-- sshfs-mapper --"
conf = Config.new
conf.parseCmd ARGV
conf.parseFile
puts conf
end
end
SshfsMapper.new