Skip to content

Commit 49f4e2f

Browse files
committed
fix typo in tmp/random
1 parent eee5970 commit 49f4e2f

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
@@ -53,7 +53,7 @@ $env.Path = ($env.Path | prepend 'C:\Program Files\Git\usr\bin')
5353
| | `help --find <string>` | Search for match in all available commands |
5454
| `command1 && command2` | `command1; command2` | Run a command, and if it's successful run a second |
5555
| `stat $(which git)` | `stat (which git).path` | Use command output as argument for other command |
56-
| `echo /tmp/$RANDOM` | `$"/tmp/(random integer)"` | Use command output in a string |
56+
| `echo /tmp/$RANDOM` | `$"/tmp/(random int)"` | Use command output in a string |
5757
| `cargo b --jobs=$(nproc)` | `cargo b $"--jobs=(sys cpu \| length)"` | Use command output in an option |
5858
| `echo $PATH` | `$env.PATH` (Non-Windows) or `$env.Path` (Windows) | See the current path |
5959
| `<update ~/.bashrc>` | `vim $nu.config-path` | Update PATH permanently |

0 commit comments

Comments
 (0)