From f65245236ff0b58b88ae44b6793523933d75c884 Mon Sep 17 00:00:00 2001 From: Joshua Levy Date: Wed, 17 Jun 2015 15:50:38 -0700 Subject: [PATCH] Use && within example. Fixes #57 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1dd29f..8c61a4b 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Scope: - In Bash scripts, subshells (written with parentheses) are convenient ways to group commands. A common example is to temporarily move to a different working directory, e.g. ```bash # do something in current dir - (cd /some/other/dir; other-command) + (cd /some/other/dir && other-command) # continue in original dir ```