sed, , , :
cat test.txt | sed "s/\.[0-9][0-9]*//g"
( sed + )
C:\Users\Me>cat test.txt
Hello, this is a file
with some .2346 stuff I want to remove.
.this stuff I dont.
What about some more: .99123how that?
Normal number: 1234
C:\Users\Me>cat test.txt | sed "s/\.[0-9][0-9]*//g"
Hello, this is a file
with some stuff I want to remove.
.this stuff I dont.
What about some more: how that?
Normal number: 1234