Problem in linux shell script

Closed
syfi - 28 Oct 2008 à 05:14
 Zorro - 19 May 2010 à 14:19
Hello,
kindly answer my question. question is: <gras>write a shell script in Linux to shift all characters in a file forward by five characters .(Thus "a" becomes "f").
faithfully
syfi
Related:

1 response

cat test.txt | tr '[a-z A-Z]' '[f-za-e F-ZA-E]'
try it............