How u convert string "hi pravin how are you?" to
"Hi Pravin How Are You?"
Answer Posted / mahfooz
echo hi praveen how are you | tr ' ' '\n' | perl -n -
e 'print "\u$_"' | tr '\n' ' '
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is shell scripting?
What is the purpose of scripting?
What is the best scripting language?
What is $1 in shell scripting?
What is an inode block?
What is a file basename?
Explain about shebang?
What is another name for a bash shell script that you might see?
Suppose you execute a command using exec, what will be the status of your current process in the shell?
What is the first line in a shell script?
Why is a script important?
What is the default shell of solaris?
What is a shell script? Can you name some of its advantages?
What does $@ mean in shell?
When should shell programming/scripting not be used?