iOS项目中通过shell脚本批量替换第三方资源文件

1、需求

我们在做开发过程中,会用到很多第三方库,并且通过CocoaPods进行管理,有时候引入的这个必要的库在UI上并不能完全满足产品的需求,比如背景图片、铃声等资源,需要对第三方库资源文件进行更改;

如果每次通过手动的方式去找对应bundle里面的资源文件,然后一个个去替换很是麻烦,并且也很容易弄错,所以可以考虑写一个shell脚本进行批量的替换操作。

2、shell脚本源码

#!/bin/sh
echo "\n----------- 开始 --------------\n"
source_path=/xxxxxx
destination_path=/xxxxx
array_icon=(
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
)
echo "替换资源文件数量为: ${#array_icon[@]}个\n"
for file in ${array_icon[@]}
do
    echo $file
    cp -f $source_path/$file $destination_path/$file
    

done
echo "\n----------- 完成✅ --------------\n"

执行替换脚本:

$ ./replace.sh 

----------- 开始 --------------

替换资源文件数量为: 6

[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]

----------- 完成✅ --------------

重新运行项目,就可以看到对应的资源文件已经替换成功了。

你可能感兴趣的:(iOS项目中通过shell脚本批量替换第三方资源文件)