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

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