Write a shell script in Linux to shift all characters in a
file forward by five characters. (Thus “a”
becomes “f’”).
Answer Posted / manuswami
cat test.txt | tr '[a-z A-Z]' '[f-za-e F-ZA-E]'
| Is This Answer Correct ? | 41 Yes | 6 No |
Post New Answer View All Answers
What are the different communication commands available in the shell?
What does $@ mean in shell?
What is the difference between grep and egrep?
What is difference between shell and bash scripting?
Determine the output of the following command: name=shubham && echo ‘my name is $name’.
What is meant by dos operating system?
Tell something about the super block in shell scripting?
What is an sh file?
What is the use of a shebang line?
How does ls command work?
What is the significance of $#?
What are the four fundamental components of every file system on linux?
how to print the matrix form of 2-d, 3-d arrays in unix c shell scripts ?
What does $0 mean in shell script?
Write a command sequence to find the count of each word?