Guild icon
Teeworlds
discord.gg/teeworlds / development
For discussions around the development of the official Teeworlds
Between 2024-03-23 00:00:00Z and 2024-03-24 00:00:00Z
Avatar
Fixed using the following shell script ``` #!/bin/sh grep -rEo '\bm_paa[A-Z][a-zA-Z0-9]+' src | cut -d':' -f2- | sort -u | while read -r var do new="m_aap$(printf '%s' "$var" | cut -c 6-)" perl -i -p -e's/\b'"$var"'\b/'"$new"'/g' $(find . -name '.h' -o -name '.cpp' -o -name '*.c') done grep -rEo '\bm_pa[A-Z][a-zA-Z0-9]+' src | cut -d':' -f2- | sort -u | while read -r var do new="m_ap$(printf '%s' "$v...
Exported 1 message(s)