Created
April 10, 2025 18:27
-
-
Save caruccio/c462372053e82add98c9551b10f1059a to your computer and use it in GitHub Desktop.
lowerCamelCase
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lowerCamelCase() | |
{ | |
python -c "s='$1'.replace('-','_').title().replace('_',''); print(s[0].lower()+s[1:])" | |
} | |
lowerCamelCase adeus_mundo-cruel | |
adeusMundoCruel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment