1件ヒット
[1-1件を表示]
(0.228秒)
ライブラリ
- ビルトイン (1)
検索結果
-
IO
# close _ on _ exec=(bool) (54358.0) -
自身に close-on-exec フラグを設定します。
...2)
@param bool 自身の close-on-exec フラグを true か false で指定します。
f = open("/dev/null")
f.close_on_exec = true
system("cat", "/proc/self/fd/#{f.fileno}") # cat: /proc/self/fd/3: No such file or directory
f.closed? #=> false
@see IO#close_on_exec?...