리눅스 UPPER SNAKE CASE를 camelCase로 변환

1 개요[ | ]

리눅스 UPPER_SNAKE_CASE를 camelCase로 변환
testuser@localhost:~$ echo "HELLO_WORLD_LOREM_IPSUM" | tr 'A-Z' 'a-z' | sed -r 's/_(.)/\U\1/g'
helloWorldLoremIpsum
testuser@localhost:~$ echo "HELLO_WORLD_LOREM_IPSUM" | tr 'A-Z' 'a-z' | sed -r 's/_([a-z])/\U\1/g'
helloWorldLoremIpsum

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}