diff --git a/cheat/cheatsheets/rename b/cheat/cheatsheets/rename index 46a017c..909842c 100644 --- a/cheat/cheatsheets/rename +++ b/cheat/cheatsheets/rename @@ -1,2 +1,5 @@ # Lowercase all files and folders in current directory rename 'y/A-Z/a-z/' * + +# Replace 'sometext' with 'replacedby' in all files in current directory +rename 's/sometext/replacedby/' *