mirror of
https://github.com/cheat/cheat.git
synced 2025-09-09 05:22:54 +02:00
6 lines
185 B
Plaintext
6 lines
185 B
Plaintext
# 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/' *
|