3b9d963098
git-svn-id: https://websvn.glenux.net/svn/Upoc/sshfs-mapper/trunk@1327 eaee96b3-f302-0410-b096-c6cfd47f7835
33 lines
304 B
Ruby
Executable file
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
|
|
|