diff --git a/docs/abe-linux-commands.md b/docs/abe-linux-commands.md index 9211c917..c6c2312c 100644 --- a/docs/abe-linux-commands.md +++ b/docs/abe-linux-commands.md @@ -9,5 +9,5 @@ find . -type f -name '*.json' -exec sed -i '' s/My text to replace/My text repla ##Linux ``` -find . -type f -name '*.json' -exec sed -i 's/My text to replace/My text replaced/g' {} \; +find . -type f -name "*.json" -exec sed -i s/My text to replace/My text replaced/g {} \; ```