diff --git a/cheat/cheatsheets/bash b/cheat/cheatsheets/bash index 3b601d3..e74a768 100644 --- a/cheat/cheatsheets/bash +++ b/cheat/cheatsheets/bash @@ -1,5 +1,5 @@ # To implement a for loop: -for file in `ls .`; +for file in *; do echo $file found; done