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.
sed または tr を使用して、ブラケットとタブでカウンターを削除するにはどうすればよいですか
入力:
[51971] 207.99.88.182 - - [07/Apr....
出力:
207.99.88.182 - - [07/Apr....
私は他のすべてを取り除くことができたので、カウンターパートは私を夢中にさせてきました. 何か案は?
この sed 行は、次の例で機能します。
sed 's/[^ ]* //'
例えば:
kent$ echo "[51971] 207.99.88.182 - - [07/Apr...."|sed 's/[^ ]* //' 207.99.88.182 - - [07/Apr....