| 46 | |
| 47 | == I/O redirection == |
| 48 | |
| 49 | It is possible to redirect standard input and output of a command from/to a file using the following syntax: |
| 50 | |
| 51 | || `from myinput.txt | command` || Will execute `command` with the input taken from file `myinput.txt` || |
| 52 | || `command | to myoutput.txt` || Will execute `command` with its output written to file `myoutput.txt` || |
| 53 | || `from myinput.txt | command | to myoutput.txt` || It is possible to redirect input and output at the same time || |
| 54 | |
| 55 | '''Note:''' HelenOS does not support pipes yet, so running `command | command` etc. is currently not supported. |