ahoward (owner)

Revisions

gist: 214897 Download_button fork
public
Public Clone URL: git://gist.github.com/214897.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env ruby
 
r, w = IO.pipe
 
fork {
  STDOUT.dup
  r.close
  STDOUT.reopen(w)
  sleep
  exit
}
 
w.close
r.read