# File fs.rb, line 116
    def method_missing aMeth, *aArgs
      case aMeth.to_s
        when /=$/
          self[$`] = *aArgs

        else
          if (n = self[aMeth]).file?
            n.read
          else
            n
          end
      end
    end