We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c52ac commit 82cf280Copy full SHA for 82cf280
book/coming_from_bash.md
@@ -26,6 +26,8 @@ Note: this table assumes Nu 0.60.0 or later.
26
| `touch test.txt` | `touch test.txt` | Create a file |
27
| `> <path>` | `\| save --raw <path>` | Save string into a file |
28
| `>> <path>` | `\| save --raw --append <path>` | Append string to a file |
29
+| `> /dev/null` | `\| ignore` | Discard command output |
30
+| `> /dev/null 2>&1` | `out+err> /dev/null` | Discard command output, including stderr |
31
| `cat <path>` | `open --raw <path>` | Display the contents of the given file |
32
| | `open <path>` | Read a file as structured data |
33
| `mv <source> <dest>` | `mv <source> <dest>` | Move file to new location |
0 commit comments