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
Write a shell script that adds two numbers if provided as the command line argument and if the two numbers are not entered throws an error message.
How can you find out how long the system has been running?
Is shell and terminal the same?
What is the use of "$?" Sign in shell script?
What is shell and shell script?
how will you find the total disk space used by a specific user?
What does echo mean in scripting?
Rewrite the command to print the sentence and convert the variable to plural: echo “i like $variable”.
What is the equivalent of a file shortcut that we have a window on a linux system?
How do you create a shortcut in linux?
what is info area how many types?
What is bash used for?
How to calculate the number of passed arguments?
What is a shell script? Can you name some of its advantages?
Print a given number, in reverse order using a shell script such that the input is provided using command line argument only.