gpt4 book ai didi

regex - Bash:用 curl 结果替换数组值

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

我有一个名为 raw.txt 的文本文件,内容如下:

T DOTTY CRONO 52/50 53/40 54/30 55/20 RESNO NETKI
U CYMON DENDU 51/50 52/40 53/30 54/20 DOGAL BEXET
V YQX KOBEV 50/50 51/40 52/30 53/20 MALOT GISTI
W VIXUN LOGSU 49/50 50/40 51/30 52/20 LIMRI XETBO
X YYT NOVEP 48/50 49/40 50/30 51/20 DINIM ELSOX
Y DOVEY 42/60 44/50 47/40 49/30 50/20 SOMAX ATSUR
Z SOORY 43/50 46/40 48/30 49/20 BEDRA NERTU
A DINIM 51/20 52/30 50/40 47/50 RONPO COLOR
B SOMAX 50/20 51/30 49/40 46/50 URTAK BANCS
C BEDRA 49/20 50/30 48/40 45/50 VODOR RAFIN
D ETIKI 48/15 48/20 49/30 47/40 44/50 BOBTU JAROM
E 46/40 43/50 42/60 DOVEY
F 45/40 42/50 41/60 JOBOC
G 43/40 41/50 40/60 SLATN

我正在将它读入数组:

while read line; do
set $line
IFS=' ' read -a array <<< "$line"
done < raw.txt

我正在尝试用 curl 结果替换所有出现的 [A-Z]{5},其中 [A-Z]{5} 作为变量输入到 curl 调用中。

要替换的第一个匹配项是 DOTTY。该调用看起来类似于 curl -s http://example.com/api_call/DOTTY,结果类似于 -55.5833 50.6333 应该替换 DOTTY 在数组中。

到目前为止,我无法正确匹配所需的字符串并将匹配项输入 curl。

非常感谢您的帮助。

祝一切顺利,克里斯

编辑:

解决方案

工作解决方案基于@Kevin 广泛的回答和@Floris 暗示 curl 结果中可能的回车。确实是这样。谢谢你!结合我这边的一些修补,我现在让它工作了。

#!/bin/bash
while read line; do
set $line
IFS=' ' read -a array <<< "$line"
i=0
for str in ${array[@]}; do
if [[ "$str" =~ [A-Z]{5} ]]; then
curl_tmp=$(curl -s http://example.com/api_call/$str)
# cut off line break
curl=${curl_tmp/$'\r'}
# insert at given index
declare array[$i]="$curl"
fi
let i++
done
# write to file
for index in "${array[@]}"; do
echo $index
done >> $WORK_DIR/nats.txt
done < raw.txt

最佳答案

除了添加匹配部分外,我没有对您的脚本进行任何更改,因为看起来这就是您需要帮助的地方:

#!/bin/bash
while read line; do
set $line
IFS=' ' read -a array <<< "$line"
for str in ${array[@]}; do
if [[ "$str" =~ [A-Z]{5} ]]; then
echo curl "http://example.com/api_call/$str"
fi
done
done < raw.txt

编辑:添加到您在 URI 中提供变量的 url 示例中。您可以将获取的输出更改为 do_something "$(curl ...)"

EDIT2:既然你想维护你从每一行创建的 bash 数组,那么这个怎么样:

当涉及到数组时,我不是很擅长 bash,所以我希望有人会在这方面找我,但这应该行得通。

我在那里留下了一些 echo ,所以你可以看到它在做什么。 shift 命令用于在正则表达式匹配时从当前位置推送数组索引。保存 curl 输出的 tmp 变量可能会得到改进,但我希望这应该能让你入门。

removed temporarily to avoid confusion

EDIT3:哎呀,上面的实际上没有用。我的错。让我在这里再试一次。

编辑4:

#!/bin/bash
while read line; do
set $line
IFS=' ' read -a array <<< "$line"
i=0
# echo ${array[@]} below is just so you can see it before processing. You can remove this
echo "Array before processing: ${array[@]}"
for str in ${array[@]}; do
if [[ "$str" =~ [A-Z]{5} ]]; then
# replace the echo command below with your curl command
# ie - curl="$(curl http://example.com/api_call/$str)"
curl="$(echo 1234 -1234)"
if [[ "$flag" = "1" ]]; then
array=( ${adjustedArray[@]} )
push=$(( $push + 2 ));
let i++
else
push=1
fi
adjustedArray=( ${array[@]:0:$i} ${curl[@]} ${array[@]:$(( $i + $push)):${#array[@]}} )
#echo "DEBUG adjustedArray in loop: ${adjustedArray[@]}"
flag=1;
fi
let i++
done
unset flag
echo "final: ${adjustedArray[@]}"
# do further processing here
done < raw.txt

我知道有一种比上述方法更聪明的方法来做到这一点,但我们正在进入 bash 中我不太适合提供建议的领域。以上应该可行,但我希望有人能做得更好。

希望对你有帮助

ps - 你可能不应该为此使用 shell 脚本,除非你真的需要。 Perl、php 或 python 将使代码简单易读

关于regex - Bash:用 curl 结果替换数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21103968/

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