ファイルから二重引用符とドットを完全に削除する方法

ファイルから二重引用符とドットを完全に削除する方法

"二重引用符とドットを削除する次のファイルコンテンツがあります.

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

努力していますが、sedドットを削除する方法が見つかりません。

# cat pschagKK | sed 's/"/ /g'
Password expiration notice for  beems  Server.example.com
Password expiration notice for  beems  Server.example.com

答え1

1つの方法は次のとおりですsed

sed -e 's/[".]//g' <file

答え2

(タイピングを少なくする)別の方法は次のとおりですtr

tr -d '".' < file

関連情報