2019/11/15

一行指令修改整個目錄內文字檔的字串

最近下載了一個 open source 的 Android app 來改。基於某些考量,必須修改 application id。因此,source code 當中有很多 package、import 等敘述都要修改,算算竟有將近一百個檔案。

作這樣修改其實不難,只要一道指令:
grep -rl OLD_APPID | xargs sed -i 's/OLD_APPID/NEW_APPID/g'