gpt4 book ai didi

shell - 如何将 sed 的输出读取到变量中

转载 作者:行者123 更新时间:2023-12-03 06:46:08 34 4
gpt4 key购买 nike

我有一个值为“abcd.txt”的变量。

我想将 ".txt" 之前的所有内容存储在第二个变量中,将 ".txt" 替换为 ".log"

我可以毫无问题地回显所需的值:

a="abcd.txt"

echo $a | sed 's/.txt/.log/'

但是如何将值 "abcd.log" 获取到第二个变量中?

最佳答案

您可以使用command substitution如:

new_filename=$(echo "$a" | sed 's/.txt/.log/')

或者不太推荐的反引号方式:

new_filename=`echo "$a" | sed 's/.txt/.log/'`

关于shell - 如何将 sed 的输出读取到变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4014074/

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