OPEN PIPE
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgOpenPipe
- Last revised: 2023-06-24
Opens an external process' standard input (stdin) or output (stdout) stream, using it as if it were file operations.
Syntax
vb
Open Pipe shell_command For Input As [#]filenumber
Open Pipe shell_command For Output As [#]filenumber
Open Pipe shell_command For Binary access_type [#]filenumberUsage
` result = Open Pipe( command[,] For {Input|Output}[,] As filenumber )
*or,* `