class Train::Extras::AixFile
Public Instance Methods
link_path()
click to toggle source
# File lib/train/extras/file_aix.rb, line 8 def link_path return nil unless symlink? @link_path ||= @backend.run_command("perl -e 'print readlink shift' #{@spath}") .stdout.chomp end
mounted()
click to toggle source
# File lib/train/extras/file_aix.rb, line 15 def mounted @mounted ||= @backend.run_command("lsfs -c #{@spath}") end