エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Ocaml/FAQ/Process Management and Communication — Wiki.crossplatform.ru
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Ocaml/FAQ/Process Management and Communication — Wiki.crossplatform.ru
[править] 16. Process Management and Communication [править] Gathering Output from a Program (* P... [править] 16. Process Management and Communication [править] Gathering Output from a Program (* Process support is mostly in the "unix" library. *) #load "unix.cma";; (* Run a command and return its results as a string. *) let read_process command = let buffer_size = 2048 in let buffer = Buffer.create buffer_size in let string = String.create buffer_size in let in_channel = Unix.open_process_in co