cat myfile.txt | tr -d 0-9 sed -e 's/[0-9]//g' file.txt perl -p -e 's/[0-9]//g' file.txt
cat myfile.txt | tr -d 0-9
tr -d 0-9 < file > newfile