如何一次性传递一个具有多个参数的变量?

时间:2017-12-20 21:49:18

标签: linux bash compression multiple-arguments

我正在尝试创建一个命令,允许用户输入一个名称作为他们想要创建的压缩文件的第一个参数(将成为tar.gz文件),并将文件和目录名称作为第二个参数。

到目前为止,我有这个脚本

name_of_archive=$1
directory_or_file_paths=$2

if [ $# -eq 0 ]
then
        echo "Usage: $0 [name of archive you wish to create] [path of directories or files you wish to compress]"
        echo "You must enter atleast one file or directory name"
        exit 1
else
        if [ -e "$directory_or_file_paths" ] || [ -d "$directory_or_file_paths" ]
        then
                tar -czvf "$name_of_archive".tar.gz "$directory_or_file_paths"
                echo "The filenames or directories you specified have been compressed into an archive called $name_of_archive.tar.gz"
        else
                echo "Some or all of the file or directory names you have given do not exist"
        fi
        exit
fi

这是我使用命令时得到的结果:

compression2.bash compression1 ./test ./listwaste
./test/
./test/test2/
./test/test2/2
./test/1
The filenames or directories you specified have been compressed into an archive called compression1.tar.gz

第一个是目录,第二个是文件。它可以工作,如果我尝试单独压缩,但如果我尝试压缩多个文件或目录或一次混合不起作用。我希望能够做到这一点。

3 个答案:

答案 0 :(得分:2)

将文件名存储在字符串中并不是一个好主意。将它们存储在数组中是一种更好的方法:

#!/usr/bin/env bash

[[ $# -lt 2 ]] && exit 1

name=$1; shift
files=("$@")

#exclude all files/directories that are not readable
for index in "${!files[@]}"; do
   [[ -r ${files[index]} ]] || unset "files[index]"
done

[[ ${#files[@]} -eq 0 ]] && exit 1    

if tar -czvf "${name:-def_$$}.tar.gz" "${files[@]}"; then
   echo "Ok"
else
   echo "Error"
   exit 1
fi

shift; files=("$@")丢弃第一个参数(name)并将其余参数(文件名)保存到数组中。

您还可以使用更简单的方法为tar构建文件名数组:

name=$1; shift

for file; do
   [[ -r $file ]] && files+=("$file")
done

答案 1 :(得分:1)

这是因为您只查看第二个参数并将其放在directory_or_file_paths变量中。每当Linux在命令中找到空格时,它会将其视为另一个参数,因此您甚至不会查看这些其他文件或文件夹。你需要做的是,如果params的数量不是0,并且你有第一个作为你的name_of_archive,那么你将需要遍历所有剩余的参数并构造一个包含所有参数的字符串,用空格分隔这就是你作为tar命令的参数给出的。

答案 2 :(得分:0)

我认为您希望在将第一个输入输入到存档的变量名后使用shift。然后,您可以传递整个列表,而不是仅存档的一个参数。

name_of_archive=$1
shift
directory_or_file_paths=("$@")
...

https://ss64.com/bash/shift.html