I moved your post from the previous thread, since it doesn't seem to fit with the threads theme.
As for removing numbers from a text file an easy way would be to use sed to do it.
input.txt being the name of the fileCode:root@bt~# sed 's/[0-9]*//g' input.txt root@bt~# sed 's/[0-9]*//g' input.txt > output.txt


