gpt4 book ai didi

linux - bash replace\with/in 一个 tetxfile

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

我有一个包含文件路径的文件。像这样:

C:\Users\peter\workspace\etwas.txt

我试着用这个例程阅读

while read LINE
do
web=$LINE
echo $web

done <etwas.txt

结果:

C:Userspeterworkspaceetwas.txt

我将以这种形式阅读

C:/Users/peter/workspace/etwas.txt

如何阅读?

最佳答案

尝试只使用 bash 内建函数:

while read -r LINE; do
web="${LINE//\\//}"
echo "$web"
done < etwas.txt

输出

$ cat etwas.txt 
C:\Users\peter\workspace\etwas.txt
$ while read -r LINE; do
> web="${LINE//\\//}"
> echo "$web"
> done < etwas.txt
C:/Users/peter/workspace/etwas.txt

我使用 bash parameter expansion\ 替换为 /

关于linux - bash replace\with/in 一个 tetxfile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15056145/

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