diff --git a/Sc2035.md b/Sc2035.md index d3d2fac..d388748 100644 --- a/Sc2035.md +++ b/Sc2035.md @@ -1,10 +1,11 @@ -# Use ./*.m3u so names with dashes won't become options. +# Use ./*.foo so names with dashes won't become options. ### Problematic code: rm * ### Correct code: rm ./* + rm -- * # This is sane, too, as -- is a popular end-of-options seperator ### Rationale