gpt4 book ai didi

linux - Bash 脚本 - 在引号中包装变量

转载 作者:太空宇宙 更新时间:2023-11-04 10:55:19 25 4
gpt4 key购买 nike

我在看书here它建议我将我的变量用引号引起来,以防值包含空格。

如果我有以下脚本:

#!/bin/bash

function checkDirectory()
{
local checkDir=$1

if [[ -d $checkDir ]] ; then
echo "File is directory"
fi


}


checkDirectory "/home/someuser/Downloads/"

如果我将参数(在本例中为 "/home/someuser/Downloads/")用引号括起来,我是否还需要将 $1 和 checkDir 也用引号括起来?

最佳答案

没有。您不必这样做,因为 $1 将被正确分配给 checkDir 并且 bash 的 [[ ]] 不会进行分词并且您的脚本将按预期工作。

但是,如果您使用 sh 测试 [ .. ],那么您将遇到以下问题:

if [ -d $checkDir ] ; then 
echo "File is directory"
fi

因此,最好的做法是引用您的变量,而不是必须记住它很重要,什么时候不重要。

关于linux - Bash 脚本 - 在引号中包装变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29061148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com