6 lines
131 B
Bash
Executable File
6 lines
131 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
# Fix TypographyEllipsis programmatically
|
|
|
|
find res -name strings.xml -type f | xargs -n 1 sed -i 's/\.\.\./…/g'
|