Write a shell script in Linux to shift all characters in a
file forward by five characters. (Thus “a”
becomes “f’”).
Answers were Sorted based on User's Feedback
Answer / manuswami
cat test.txt | tr '[a-z A-Z]' '[f-za-e F-ZA-E]'
| Is This Answer Correct ? | 41 Yes | 6 No |
Answer / 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 |
write a program to display all the files from the current directory which are created in particular month
What are the various stages of a linux process it passes through?
What is path variable bash?
What is shell chemistry?
When you login to a c shell, which script would be run first?
What is shell environment?
What is use of "cut" command?
There are three departments A,B and C.Write a query to display the names of all the persons( in departments other than A) who are paid higher than the person receiving the lowest salary in DEPT A
Determine the output of the following command: [ -z “” ] && echo 0 || echo 1
What are the different methods available to run a shell script?
How to redirect both standard output and standard error to the same location?
wats the she bang statment with syntax?