使用空格将参数传递给Bash脚本中的命令

时间:2011-01-20 23:48:03

标签: bash shell unix scripting escaping

我正在尝试将2个参数传递给命令,每个参数都包含空格,我已经尝试转义args中的空格,我尝试用单引号括起来,我试过逃避\“但没有什么会工作

这是一个简单的例子。

#!/bin/bash -xv

ARG="/tmp/a b/1.txt"
ARG2="/tmp/a b/2.txt"

ARG_BOTH="\"$ARG\" \"$ARG2\""
cat $ARG_BOTH

运行时我得到以下内容:

ARG_BOTH="$ARG $ARG2"
+ ARG_BOTH='/tmp/a\ b/1.txt /tmp/a\ b/2.txt'
cat $ARG_BOTH
+ cat '/tmp/a\' b/1.txt '/tmp/a\' b/2.txt
cat: /tmp/a\: No such file or directory
cat: b/1.txt: No such file or directory
cat: /tmp/a\: No such file or directory
cat: b/2.txt: No such file or directory

3 个答案:

答案 0 :(得分:12)

请参阅http://mywiki.wooledge.org/BashFAQ/050

TLDR

将你的args放在一个数组中,并将你的程序称为myutil "${arr[@]}"

#!/bin/bash -xv

file1="file with spaces 1"
file2="file with spaces 2"
echo "foo" > "$file1"
echo "bar" > "$file2"
arr=("$file1" "$file2")
cat "${arr[@]}"

输出

file1="file with spaces 1"
+ file1='file with spaces 1'
file2="file with spaces 2"
+ file2='file with spaces 2'
echo "foo" > "$file1"
+ echo foo
echo "bar" > "$file2"
+ echo bar
arr=("$file1" "$file2")
+ arr=("$file1" "$file2")
cat "${arr[@]}"
+ cat 'file with spaces 1' 'file with spaces 2'
foo
bar

答案 1 :(得分:6)

这可能是通用“set”命令的一个很好的用例,它将顶级shell参数设置为单词列表。也就是说,1美元,2美元......还有$ *和$ @重置。

这为您提供了阵列的一些优点,同时保持了所有Posix-shell兼容性。

所以:

set "arg with spaces" "another thing with spaces"
cat "$@"

答案 2 :(得分:5)

可以正常工作的示例shell脚本的最简单的修订版:

#! /bin/sh

ARG="/tmp/a b/1.txt"
ARG2="/tmp/a b/2.txt"

cat "$ARG" "$ARG2"

但是,如果你需要在一个shell变量中包含一大堆参数,那么你就是一条小溪;没有便携,可靠的方法来做到这一点。 (数组是特定于Bash的;唯一的可移植选项是seteval,这两个选项都要求悲伤。)我认为需要这一点作为表明是时候重写了一种更强大的脚本语言,例如Perl或Python。