Como remover aspas duplas e pontos de um arquivo

1

Tenho abaixo o conteúdo do arquivo do qual desejo remover as aspas duplas " e o ponto . :

Password expiration notice for beems Server
# cat pschagKK
Password expiration notice for "beems" Server.example.com
Password expiration notice for "beems" Server.example.com
Password expiration notice for "beems" Server.example.com
Password expiration notice for "goog_dev" Server.example.com
Password expiration notice for "goog_integ" Server.example.com
Password expiration notice for "noodle" Server.example.com
Password expiration notice for "noodle" Server.example.com
Password expiration notice for "pacct" Server.example.com
Password expiration notice for "pacct" Server.example.com
Password expiration notice for "pacct" Server.example.com
Password expiration notice for "pacct" Server.example.com
Password expiration notice for "pacct" Server.example.com

Estou tentando sed , mas não consigo encontrar uma maneira de remover pontos também:

# cat pschagKK | sed 's/"/ /g'
Password expiration notice for  beems  Server.example.com
Password expiration notice for  beems  Server.example.com
    
por Rocky 13.11.2015 / 07:51

2 respostas

3

Uma maneira com sed :

sed -e 's/[".]//g' <file
    
por 13.11.2015 / 07:56
2

Outra maneira (e menos digitação) é tr :

tr -d '".' < file
    
por 13.11.2015 / 09:21