From 08b2b3be52be19b5d27d6f1cde6e3daebe68caf1 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Sun, 18 Feb 2024 18:11:54 -0600 Subject: [PATCH] document the semicolon w00t --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 7da72e6..775b983 100644 --- a/README.md +++ b/README.md @@ -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 +```