Engineering from Scratch

エンジニア目指してます

2022-06-05から1日間の記事一覧

2022/06/04

Unix Processes Descriptors Represent Resources irb(main):002:0> passwd = File.open('/etc/passwd') => #<File:/etc/passwd> irb(main):003:0> puts passwd.fileno 9 => nil irb(main):004:0> hosts = File.open('/etc/hosts') => #<File:/etc/hosts> irb(main):005:0> puts hosts.fileno 10</file:/etc/hosts></file:/etc/passwd>…