# unix_utils Like FileUtils, but provides zip, unzip, bzip2, bunzip2, tar, untar, sed, du, md5sum, shasum, cut, head, tail, wc, unix2dos, dos2unix, iconv, curl, perl, etc. Works in MRI 1.8.7+, MRI 1.9.2+, and JRuby 1.6.7+ ## Where it's used * [Brighter Planet CM1 Impact Estimate web service](http://impact.brighterplanet.com) * [Brighter Planet Reference Data web service](http://data.brighterplanet.com) * Extracted from [`remote_table`](https://github.com/seamusabshere/remote_table) ## Philosophy Use a subprocess to perform a big task and then get out of memory.
cover of the Unix Philosophy book Tenet 2: Make Each Program Do One Thing Well. The best programs, like Cousteau's lake fly, does but one task in its life and does it well. The program is loaded into memory, accomplishes its function, and then gets out ot the way to allow
the next single-minded program to begin. This sounds simple, yet it may surprise you how many software developers have difficulty sticking to this singular goal.
## Rules (what you can expect) For commands like zip, untar, sed, head, cut, dos2unix, etc.: 1. Just returns a path to the output, randomly named, located in the system tmp dir (`UnixUtils.unzip('kittens.zip)` → `'/tmp/unix_utils-129392301-kittens'`) 2. Never touches the input 3. Sticks a useful file extension on the output, if applicable (`UnixUtils.tar('puppies/')` → `'/tmp/unix_utils-99293192-puppies.tar'`) For commands like du, md5sum, shasum, etc.: 1. Just returns the good stuff (the checksum, for example, not the filename that is listed after it in the standard command output) 2. Never touches the input ## But I can just spawn these myself This lib was created to ease the pain of remembering command options for Gentoo, deciding which spawning method to use, possibly handling pipes... require 'tmpdir' destdir = File.join(Dir.tmpdir, "kittens_#{Kernel.rand(1e11)}") require 'open3' Open3.popen3('unzip', '-q', '-n', 'kittens.zip, '-d', destdir) do |stdin, stdout, stderr| stdin.close @error_message = stderr.read end is replaced safely with destdir = UnixUtils.unzip 'kittens.zip' ## But I can just use `Digest::SHA256` (Note: [Balazs Kutil](https://github.com/bkutil) pointed out [this is a bad example](https://gist.github.com/1950707)... I will replace it soon) This will load an entire file into memory before it can be processed... require 'digest' str = Digest::SHA256.hexdigest File.read('kittens.zip') ... so you're really replacing this ... sha256 = Digest::SHA256.new File.open('kittens.zip', 'r') do |f| while chunk = f.read(4_194_304) sha256 << chunk end end str = sha256.hexdigest You get the same low memory footprint with str = UnixUtils.shasum('kittens.zip', 256) ## Compatibility Now using [`posix-spawn`](https://github.com/rtomayko/posix-spawn) for speed. Thanks for the suggestion [jjb](https://github.com/jjb)! Previously used `open3` because it's in the Ruby stdlib and is consistent across MRI and JRuby. ## Authors * Seamus Abshere ## Copyright Copyright (c) 2012 Brighter Planet. See LICENSE for details.