# File lib/core/facets/file/append.rb, line 7
  def self.append( file, str )
    File.open( file, 'ab' ) { |f|
      f << str
    }
  end