# File lib/file/tail.rb, line 171
    def forward(n = 0)
      seek(0, File::SEEK_SET)
      while n > 0 and not eof?
        readline
        n -= 1
      end
      self
    end