Bash - 重命名具有"的文件在里面

时间:2017-10-10 16:23:20

标签: linux bash shell file

好的,我有一个功能,它将参数作为一个字符串,它将输出新字符串任何空格'"

function rename_file() {

local string_to_change=$1
local length=${#string_to_change}
local i=0   
local new_string=" "
local charac

for i in $(seq $length); do
    i=$((i-1))
    charac="${string_to_change:i:1}"

    if [ "$charac" != " " ] && [ "$charac" != "'" ] && [ "$charac" != """ ];  then #Here if the char is not" ", " ' ", or " " ", we will add this char to our current new_string and else, we do nothing

        new_string=$new_string$charac #simply append the "normal" char to new_string

    fi

done

echo $new_string #Just print the new string without spaces and other characters
}

但我无法测试char是",因为它不起作用。如果我用

调用我的函数
rename_file (file"n am_e)

它只是打开>并等待我输入一些东西......任何帮助?

1 个答案:

答案 0 :(得分:5)

将名称放在单引号中。

rename_file 'file"n am_e'

如果你想测试单引号,请用双引号括起来:

rename_file "file'n am_e"

要测试两者,请将它们放在双引号中并转义内部双引号:

rename_file "file'na \"me"

另一种选择是使用变量:

quote='"'
rename_file "file'na ${quote}me"

此外,您不需要在shell函数的参数周围添加括号。它们被称为普通命令,参数在同一命令行上用空格分隔。

并且您不需要该循环来替换字符。

new_string=${string_to_change//[\"\' ]/}

有关此语法的说明,请参阅Bash手册中的Parameter Expansion