You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`> /dev/null 2>&1`|`out+err>\| ignore` or `o+e>\| ignore`| Discard command output, including stderr |
35
-
|`command 2>&1 \| less`|`command out+err>\| less` or `command o+e>\| less`| Pipe stdout and stderr of a command into less |
35
+
|`command 2>&1 \| less`|`command out+err>\| less` or `command o+e>\| less`| Pipe stdout and stderr of an external command into less (NOTE: use [explore](explore.html) for paging output of internal commands)|
36
36
|`cmd1 \| tee log.txt \| cmd2`|`cmd1 \| tee { save log.txt } \| cmd2`| Tee command output to a log file |
37
+
|`command \| head -5`|`command \| first 5`| Limit the output to the first 5 rows of an internal command (see also `last` and `skip`) |
37
38
|`cat <path>`|`open --raw <path>`| Display the contents of the given file |
38
39
||`open <path>`| Read a file as structured data |
39
40
|`mv <source> <dest>`|`mv <source> <dest>`| Move file to new location |
0 commit comments