How u convert string "hi pravin how are you?" to
"Hi Pravin How Are You?"
Answer Posted / sonia
Use perl :-)
msg="hi praveen how are you"
msg=`echo $msg | perl -n -e 'print ucfirst(lc);'`
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
When should shell programming/scripting not be used?
What is shell and terminal?
What shell is bin sh?
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?
What is awk script?
What is $1 in shell scripting?
How will you print the login names of all users on a system?
What is the difference between break and continue commands?
shell script for reverse the string
Can we run shell script in windows?
Please give me example of " at command , contrab command " how to use
Hello all, This is my assignment on shell scripting, can anyone help me regarding this ? Create a shell script which connects to the database In second shell script include the first script for the DB connection Create a table (PRADEEP_DATA) with 2 columns (name, value) In Third shell script include the first script for the DB connection And insert/delete the values from the Table, by accepting input from the user This functionality should be a menu driven Program: 1) Insert to the database a. Name b. value 2)Delete from the database a.Name b.value Exception handling needs to be taken care.
What are the different communication commands available in the shell?
How can you get the value of pi till a 100 decimal places?
wats the deinitions for shell utility and filter?