Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
多くの IP アドレスを含むファイルがあります。これらの IP アドレスをいくつかの数字に変更する必要があります。以下は、ファイル「データ」がどのように見えるかです
152.14.12.1 152.14.12.2 152.14.12.3
を実行するcat data | tr -s '152.14.12.1' '9'と、すべてが置き換えられ、出力は9 9 9 9. これを行う方法。どんな助けでも大歓迎です。
cat data | tr -s '152.14.12.1' '9'
9 9 9 9
sed文字列を置き換えるために ,を使用することを好むかもしれませんtr。
sed
tr
cat data | sed "s/152.14.12.1/9/g"
あなたにあげる:
9 152.14.12.2 152.14.12.3