1

我有一个 Bash 脚本(Cygwin),它使用了一些带有空格的 Windows 路径。因此,我\在变量定义中使用 a 转义了空间。

脚本中的所有内容都可以正常工作。但是,我需要将此变量作为参数传递给命令行可执行文件。当我这样做时,我的逃跑会变得一团糟。

示例非功能性脚本:

#!/bin/sh

# File paths
destinationPath="/cygdrive/c/Documents and Settings/Eric/My Documents/"
attachments="\n2013-12-12.pdf"
body="Test Body"
recipient="asdf@asdf.com"


# Prepare attachments
args=""
for file in $attachments ; do
    file=${file//[ \\n]/}
    touch $file
    mv $file "$destinationPath/$file"
    args="$args -a $destinationPath/$file"
done


# Send email
echo -e $body | email --from-addr nosender@mydomain.com --from-name "Automated CSS Downloader" --subject "Downloaded new file(s) \
  from CSS" $args eric@mydomain.com

脚本的输出:

$ bash -x test.sh
+ destinationPath='/cygdrive/c/Documents and Settings/Eric/My Documents/'
+ attachments='\n2013-12-12.pdf'
+ body='Test Body'
+ recipient=asdf@asdf.com
+ args=
+ for file in '$attachments'
+ file=2013-12-12.pdf
+ touch 2013-12-12.pdf
+ mv 2013-12-12.pdf '/cygdrive/c/Documents and Settings/Eric/My Documents//2013-12-12.pdf'
mv: listing attributes of `2013-12-12.pdf': Invalid argument
+ args=' -a /cygdrive/c/Documents and Settings/Eric/My Documents//2013-12-12.pdf'
+ echo -e Test Body
+ email --from-addr nosender@mydomain.com --from-name 'Automated CSS Downloader' --subject 'Downloaded new file(s) from CSS' -a /cygdrive/c/Documents and Settings/Eric/My Documents//2013-12-12.pdf eric@mydomain.com
email: WARNING: Email address 'and' is invalid. Skipping...
email: FATAL: Could not open attachment: /cygdrive/c/Documents: No such file or directory

因此,如您所见,路径中的转义空间没有被导出到 $args 变量中。我假设错误出现在“args = ...”行上。但我不确定如何转义 $destinationPath 以确保保留转义字符。

我尝试在destinationPath 中使用双引号(没有转义空格),但无济于事。如果我尝试在 args= 行中使用双引号 $destinationPath,那么输出也会被一堆额外的引号搞砸。

我怎样才能让它工作?我尝试过使用 $IFS 变量,但我真的不知道我在用它做什么,似乎也无法让它与它一起工作,尽管我怀疑该解决方案与 $国际金融服务协会。

4

2 回答 2

6

没有数组就没有好方法。(有一种不好的方法,使用eval,但数组更简单。)

问题是您希望每个文件最终都作为 的一个参数email,但您希望将所有这些参数累积到一个 Bash 变量中。没有办法做到这一点:您可以将 Bash 变量作为单个参数 ( "$arg") 插入,或者您可以将其插入为它被拆分成的多个单词 ( $arg),但您无法得到它根据创建变量时是否转义空格来拆分,因为 Bash 只记住分配给变量的字符串,而不是转义标记。

但是,您可以使用数组来执行此操作,因为您可以使每个文件名都恰好是一个数组元素,并且您可以让 Bash 插入一个数组作为每个元素的一个参数。

就是这样:

# File paths                                                                                                                              
destinationPath="/cygdrive/c/Documents and Settings/Eric/My Documents/"
attachments="\n2013-12-12.pdf"
body="Test Body"
recipient="asdf@asdf.com"


# Prepare attachments                                                                                                             
args=()
for file in $attachments ; do
    file=${file//[ \\n]/}
    touch $file
    mv $file "$destinationPath/$file"
    args+=(-a "$destinationPath/$file")
done

# Send email                                                                                                                      
echo -e $body |
  email --from-addr nosender@mydomain.com \
        --from-name "Automated CSS Downloader" \
        --subject "Downloaded new file(s) from CSS" \
        "${args[@]}" eric@mydomain.com

您可能还想将attachments变量放入数组中;从换行符的存在来看,我假设您实际上是以更复杂的方式设置它,所以我没有更改代码。但是,如果附件名称中有空格,则您当前的代码将不起作用(而且我很确定换行符将被for表单中的参数扩展消除,除非您更改了 的值$IFS,所以file=${file//[ \\n]/}应该没有必要。)

于 2013-06-23T05:04:08.970 回答
1

在字符串中提供destinationPath 时,您需要转义双引号。

这应该有效:

#!/bin/sh                                                                                                                                 

# file paths                                                                                                                              
destinationPath="/cygdrive/c/Documents and Settings/Eric/My Documents/"
attachments="\n2013-12-12.pdf"
body="Test Body"
recipient="asdf@asdf.com"


        # prepare attachments                                                                                                             
        args=""
        for file in $attachments ; do
            file=${file//[ \\n]/}
            touch $file
            mv $file "$destinationPath/$file"
            #HERE YOU NEED ESCAPED DOUBLEQUOTED
            args="$args -a \"$destinationPath/$file\""
        done

        # send email                                                                                                                      
        echo -e $body | email --from-addr nosender@mydomain.com --from-name "Automated CSS Downloader" --subject "Downloaded new file(s) \
from CSS" $args eric@mydomain.com
于 2013-06-23T04:30:43.260 回答