summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/fixtures/map_fd.rb
blob: 3ed887486b387c78fb6f2a2dbbe94f51223931dd (plain)
1
2
3
4
5
6
7
8
9
fd = ARGV.shift.to_i

f = File.for_fd(fd)
f.autoclose = false
begin
  f.write "writing to fd: #{fd}"
ensure
  f.close
end