shell脚本中的zip问题。为什么是错误的呢?

shell脚本中的zip问题。为什么是错误的呢?

编写 shell 脚本 file_locker.sh 来压缩文件,并使用指定长度的随机生成 PIN 的哈希密码来保护该文件,同时将 PIN 存储到指定文件中。

#!/bin/bash
file_locker(){

m=$1
for ((i=1;i<=m;i++));
do
num=($(( 0 + RANDOM % 9 )))

echo -n "$num"

done > $3

mypin=$(echo $3)
echo pin $mypin

myhash=$(echo $mypin | sha256sum)
echo hash $myhash

zip -P $myhash $2.zip -r $2 && rm $2

}
file_locker $1 $2 $3

然而,命令行告诉我这样的:

zip error: Invalid command arguments (cannot write zip file to terminal)

我不知道如何改进 zip 命令。请帮忙 !

答案1

你应该在参数中使用引号...
并在 for 循环中使用 $m 而不是 m

#!/bin/bash
file_locker(){

m="$1"
for ((i=1;i<=$m;i++));
do
num=($(( 0 + RANDOM % 9 )))

echo -n "$num"

done > "$3"

mypin=$(echo "$3")
echo pin "$mypin"

myhash=$(echo "$mypin" | sha256sum)
echo hash "$myhash"

zip -P "$myhash" "$2".zip -r "$2" && rm "$2"

}
file_locker "$1" "$2" "$3"

zip 错误:命令参数无效..

如果你的论点中有空格,你会得到这个......

相关内容