Skip to content

Commit db91641

Browse files
authored
book/coming_from_bash - s/hide/hide-env (#900)
1 parent 82e12be commit db91641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/coming_from_bash.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Note: this table assumes Nu 0.60.0 or later.
5454
| `FOO=BAR ./bin` | `FOO=BAR ./bin` | Update environment temporarily |
5555
| `export FOO=BAR` | `let-env FOO = BAR` | Set environment variable for current session |
5656
| `echo $FOO` | `$env.FOO` | Use environment variables |
57-
| `unset FOO` | `hide FOO` | Unset environment variable for current session |
57+
| `unset FOO` | `hide-env FOO` | Unset environment variable for current session |
5858
| `alias s="git status -sb"` | `alias s = git status -sb` | Define an alias temporarily |
5959
| `type FOO` | `which FOO` | Display information about a command (builtin, alias, or executable) |
6060
| `<update ~/.bashrc>` | `vim $nu.config-path` | Add and edit alias permanently (for new shells) |

0 commit comments

Comments
 (0)