document the semicolon

w00t
main
Jordan Orelli 7 months ago
parent cdfa848f46
commit 08b2b3be52

@ -30,3 +30,15 @@ Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean
```
### Run commands back to back
To run two commands back to back, separate them with a semicolon. Note that
this interaction is entirely unconditional: the second command executes
regardless of whether the first command succeeded or not.
```
c:\dev\clyde ▷ echo one; echo two
one
two
```

Loading…
Cancel
Save