From cf3b473afa530e1386b21d82d23274db40c68d6a Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 17 Jun 2018 20:43:54 -0400 Subject: [PATCH] fix mispelling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 766da98..889e0e3 100644 --- a/README.md +++ b/README.md @@ -675,7 +675,7 @@ for dir in ~/Downloads/*/; do done # Leverage brace expansion to loop, explicit reference -for file in /path/to/parentdir/{fil1,file2,subdir/file3}; do +for file in /path/to/parentdir/{file1,file2,subdir/file3}; do printf '%s\n' "$file" done