We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82e12be commit db91641Copy full SHA for db91641
1 file changed
book/coming_from_bash.md
@@ -54,7 +54,7 @@ Note: this table assumes Nu 0.60.0 or later.
54
| `FOO=BAR ./bin` | `FOO=BAR ./bin` | Update environment temporarily |
55
| `export FOO=BAR` | `let-env FOO = BAR` | Set environment variable for current session |
56
| `echo $FOO` | `$env.FOO` | Use environment variables |
57
-| `unset FOO` | `hide FOO` | Unset environment variable for current session |
+| `unset FOO` | `hide-env FOO` | Unset environment variable for current session |
58
| `alias s="git status -sb"` | `alias s = git status -sb` | Define an alias temporarily |
59
| `type FOO` | `which FOO` | Display information about a command (builtin, alias, or executable) |
60
| `<update ~/.bashrc>` | `vim $nu.config-path` | Add and edit alias permanently (for new shells) |
0 commit comments