From 8ab7cf7a6d18ae392e1afa6f6cf3a8fd6fcb43ec Mon Sep 17 00:00:00 2001 From: O Date: Tue, 3 May 2022 21:38:31 +0200 Subject: [PATCH] Simplify glob expression Signed-off-by: O --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 47fc319..67aafb3 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ sudo !! ls -l [a-z]* #list all files with alphabet in its filename. # ‘{}’ can be used to match filenames with more than one patterns -ls {*.sh,*.py} #list all .sh and .py files +ls *.{sh,py} #list all .sh and .py files ``` ##### Some handy environment variables