1
0
mirror of https://github.com/FreeRTOS/FreeRTOS-Kernel.git synced 2025-10-19 02:17:11 +08:00
Files
FreeRTOS-Kernel/.github/scripts/find_replace.sh
2022-11-29 15:38:47 -08:00

7 lines
187 B
Bash
Executable File

#!/bin/bash
old_text=$1
new_text=$2
echo "Old text: ${old_text}"
echo "New text: ${new_text}"
grep -rl "${old_text}" . | xargs gsed -i -e '1h;2,$H;$!d;g' -e "s/${old_text}/${new_text}/g"