gpt4 book ai didi

linux - 引用包含引号的文件名并在 Bash 中作为变量给出

转载 作者:太空狗 更新时间:2023-10-29 11:41:50 25 4
gpt4 key购买 nike

假设我在变量 DIR 中有一个目录路径,我想列出这个目录。如果我只关心路径中的空格,那么我可以这样做

ls "$DIR"

如果我想在目录路径中也支持单引号和双引号以及其他奇怪的东西,我应该怎么写?示例:

DIR="/Users/Mick O'Neil (the \"Terminator\")/Desktop"
echo $DIR # prints /Users/Mick O'Neil (the "Terminator")/Desktop
ls <what should I write here?>

最佳答案

引号不仅适用于空格,还适用于所有内容,因此在这里使用双引号是您需要的安全级别。

来自 Bash Reference Manual on Quoting :

3.1.2.3 Double Quotes

Enclosing characters in double quotes (‘"’) preserves the literal value of all characters within the quotes, with the exception of ‘$’, ‘`’, ‘\’, and, when history expansion is enabled, ‘!’.


让我们将这个字符串存储到一个文件中以备后用。

$ cat file
Mick O'Neil (the "Terminator")

读入变量:

$ filename=$(<file)

检查它的值:

$ echo "$filename"
Mick O'Neil (the "Terminator")

用这个值创建一个文件:

$ touch "$filename"

检查是否创建成功:

$ lt "$filename"
-rw-r--r-- 1 me me 0 Mar 1 15:09 Mick O'Neil (the "Terminator")

关于linux - 引用包含引号的文件名并在 Bash 中作为变量给出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42533879/

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