fork download
  1. # data laundry
  2.  
  3. {while ($0 ~ /ABCDE/) sub(/ABCDE/, "X"++count); print}
Success #stdin #stdout 0s 4548KB
stdin
ABCDE This is some text.
This is more text. ABCDE, ABCDE.
ABCDE And this is [ABCDE] still more text.
stdout
X1 This is some text.
This is more text. X2, X3.
X4 And this is [X5] still more text.