Write a shell script in Linux to shift all characters in a
file forward by five characters. (Thus “a”
becomes “f’”).
Answer Posted / dibya jyoti singha
cat abc.txt | tr '[a-z A-Z]' '[f-za-e F-ZA-E]' > xyz.txt
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are the four fundamental components of every file system on linux?
Write down the syntax for all the loops in shell scripting.
Is shell a part of kernel?
Why do we use shell scripting?
Write down the syntax of "for " loop
What are the different types of shell scripting?
Explain about gui scripting?
Where are cowrie shells found?
How do I run a shell script in powershell?
How do I set bash as default shell mac?
How do I open a jshell in cmd?
Is shell script a programming language?
How important is shell scripting?
What is mac default shell?
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.