Skip to main
this.isMin.uk
About
Random
bash에서 첫번째 문자를 대문자로 만들기
왜 이렇게 가능한지 나중에 공부하기
file
=
"$(tr '[:lower:]' '[:upper:]' <<< ${file:0:1})${file:1}"
출처
https://stackoverflow.com/questions/12487424/uppercase-first-character-in-a-variable-with-bash
Til
,
Bash