gpt4 book ai didi

string - Bash:用字符串操作(百分号)

转载 作者:行者123 更新时间:2023-11-29 08:42:13 24 4
gpt4 key购买 nike

在操作字符串时,百分号在 bash 中意味着什么?例如,${0%/*} 是什么意思?

最佳答案

如果您使用@fedorqui 的资源,您会看到它将从第一个位置参数的末尾删除 /* 的最短匹配。一个例子:

example_foo(){
echo ${1%/*}
}

example_foo path/to/directory/sub_directory
# => path/to/directory

在示例中,我使用了第二个位置参数,因为第一个参数是函数的名称。

关于string - Bash:用字符串操作(百分号),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16444004/

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