# File lib/facets/core/fileutils/compress.rb, line 78
  def untar_bzip( file )
    cmd = "tar --bzip2 -xf #{file}"
    puts cmd
    system cmd
  end