I have value as: james,adam,john I am trying to make it James,Adam,John(First character of each name should be Uppercase)
According to
You can use sed:
sed
$ echo 'james,adam,john' | sed 's/\<./\u&/g' James,Adam,John
\<.
\u&