# File lib/facets/core/fileutils/slice.rb, line 52
  def slice(filename,from,to) #:yield:
    IO.readlines(filename)[from-1..to-1]
  end