How to replace a number of character with a single one?

84 Views Asked by At

If the character is met more than once I must replace it with a single one. For example i have this in a file: ????aca, I must replace it with ?aca. I've tried it with tr, but didn't make it to work proper.

3

There are 3 best solutions below

2
On BEST ANSWER

It seems easy with using backreferences:

sed 's/\(.\)\1\+/\1/g' infile
0
On

If you want to truncate consecutive runs of one particular character, tr -s does that.

tr -s '?' <file >file.new
0
On

Based on your limitation to ?

sed 's/[?]\{2,\}/?/g' YourFile

also POSIX compliant