美文网首页
macOS批量修改或添加文件前缀

macOS批量修改或添加文件前缀

作者: 申申申申申 | 来源:发表于2019-06-29 13:21 被阅读0次
    • 目录
    • 缘由
    • 脚本链接
    • 使用
    • 源码
    • 致谢

    1. 缘由

    笔者能力有限,如有不妥的地方,还请指正

    脚本源码在最下面

    有时候,会遇到设计师给的切图的命名规则和我们期望的不一样
    我会要求同一个模块的图片的前缀必须一致

    随便举个🌰
    假如这是设计师给我们的

    我们想把welcome_page_修改为novice_guide_page_
    效果图如下

    一个个的修改,太麻烦,弃之

    2. 脚本链接

    自己写了个脚本
    百度云链接:点这里 密码:grwe
    源码在最下面,可以复制下,另存为***.sh即可

    笔者能力有限,如有不妥的地方,还请指正

    3. 使用

    没有递归的去修改
    分为两种模式:修改前缀模式 和 添加前缀模式

    1. 修改前缀模式
    ff-2:Desktop fengfeng$ bash replace_prefix.sh /Users/fengfeng/Desktop/NoviceGuidePage welcome_page_ novice_guide_page_
    

    参数1:图片资源文件夹
    参数2:待修改的前缀
    参数3:需要添加的前缀

    修改前缀模式
    效果图
    1. 添加前缀模式
    ff-2:Desktop fengfeng$ bash replace_prefix.sh /Users/fengfeng/Desktop/NoviceGuidePage " " novice_guide_page_
    

    参数1:图片资源文件夹
    参数2:" " (注意,中间有个空格)
    参数3:需要添加的前缀

    添加前缀模式
    效果图

    果然学习使人变懒~

    4. 源码

    #!/bin/bash
    
    function ff_cp() {
        file_path=$1
        copy_path=${file_path}"/ff_renamed/"
    
        if ! [ -d $copy_path ]
        then
            echo "目标文件夹不存在"
            echo "创建目标文件夹..."
            mkdir $copy_path
            echo "创建目标文件夹成功 $copy_path"
        else
            echo "目标文件夹已存在"
        fi
    
        if [ "$origin_str" = " " ]
        then
            echo "------------------>>>>>> 添加前缀模式 <<<<<<------------------"
            ff_add
        else
            echo "------------------>>>>>> 替换前缀模式 <<<<<<------------------"
            ff_replace
        fi
    }
    
    function ff_add() {
        for (( i = 0; i < ${#files_arr[@]}; i++ )); do
            filename=${files_arr[$i]}
            true_filename=(`echo $filename | sed 's/-/[[:space:]]/g'`)
    
            suffix_str=${true_filename#$origin_str}
            final_name=$replace_str$suffix_str
            echo "$true_filename 修改后的文件名:$final_name"
            cp "$file_path/$true_filename" "$copy_path$final_name"
        done
    }
    
    function ff_replace() {
        for (( i = 0; i < ${#files_arr[@]}; i++ )); do
            filename=${files_arr[$i]}
            true_filename=(`echo $filename | sed 's/-/[[:space:]]/g'`)
    
            if [[ $true_filename == $origin_str* ]]
            then
    #            echo "$true_filename 以 $origin_str 为前缀"
                suffix_str=${true_filename#$origin_str}
                final_name=$replace_str$suffix_str
                echo "$true_filename 修改后的文件名:$final_name"
                cp "$file_path/$true_filename" "$copy_path$final_name"
            else
                echo "$true_filename 不以 $origin_str 为前缀"
            fi
        done
    }
    
    # -----
    
    file_path=$1
    origin_str=$2
    replace_str=$3
    
    if [ ${#file_path} -eq 0 ]
    then
        echo "非法路径"
        exit
    fi
    
    if [ ${#origin_str} -eq 0 ]
    then
        echo "请输入需要替换的前缀"
        exit
    fi
    
    if [ ${#replace_str} -eq 0 ]
    then
        echo "请输入替换后的前缀"
        exit
    fi
    
    echo "目标路径:$file_path"
    echo "需要替换的前缀:$origin_str"
    echo "替换后的前缀:$replace_str"
    
    temp_files_arr=(`ls $file_path | sed 's/[[:space:]]/-/g'`)
    temp_num=${#temp_files_arr[@]}
    echo "路径内-内容数量(包含文件和文件夹):$temp_num"
    
    for filename in ${temp_files_arr[@]}; do
        if ! [ -d $file_path/$filename ]
        then
            files_arr+=($filename)
        fi
    done
    
    files_num=${#files_arr[@]}
    echo "路径内-文件数量:$files_num"
    
    if [ $files_num -eq 0 ]
    then
    echo "目标文件夹为空"
    exit
    fi
    
    #temp_length=${#files_num}
    
    ff_cp $file_path
    
    echo ""
    echo "操作完成 bye ~"
    

    不定期更新 不合适的地方 还请指点~ 感激不尽

    相关文章

      网友评论

          本文标题:macOS批量修改或添加文件前缀

          本文链接:https://www.haomeiwen.com/subject/potpcctx.html