Skip to content

Commit b5f9352

Browse files
authored
Add missing semicolon to the bash section (#820)
As per #819
1 parent 9873ef6 commit b5f9352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TerminalDocs/tutorials/new-tab-same-directory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Windows Subsystem for Linux distributions primarily use BASH as the command line
113113
Add the following line to the end of your `.bash_profile` config file:
114114

115115
```bash
116-
PROMPT_COMMAND=${PROMPT_COMMAND:+"$PROMPT_COMMAND "}'printf "\e]9;9;%s\e\\" "$(wslpath -w "$PWD")"'
116+
PROMPT_COMMAND=${PROMPT_COMMAND:+"$PROMPT_COMMAND ; "}'printf "\e]9;9;%s\e\\" "$(wslpath -w "$PWD")"'
117117
```
118118

119119
The `PROMPT_COMMAND` variable in bash tells bash what command to run before displaying the prompt. The `printf` statement is what we're using to append the sequence for setting the working directory with the Terminal. The `$(wslpath -w "$PWD")` bit will invoke the `wslpath` executable to convert the current directory into its Windows-like path. The `${PROMPT_COMMAND:+"$PROMPT_COMMAND; "}` bit is [some bash magic](https://unix.stackexchange.com/a/466100) to make sure we append this command to any existing command (if you've already set `PROMPT_COMMAND` somewhere else.)

0 commit comments

Comments
 (0)