gpt4 book ai didi

linux - shell解析csv文件,将字段分配给变量并在多列中打印

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:48:11 28 4
gpt4 key购买 nike

我正在尝试 curl 一个 csv 文件并根据其属性解析它并使用变量名将其打印回来。

文件 1:

10.0.0.1,gateway,name_of_device
10.2.4.5,server,name_of_device
10.3.5.6,PC,name_of_device

下面是我的脚本,

#!/bin/sh

input=$(curl http://example.com/1.txt)

ip=$(echo "$input" | awk -F ',' '{print $1}')
type=$(echo "$input" | awk -F ',' '{print $2}')
name=$(echo "$input" | awk -F ',' '{print $3}')

echo "$ip $type $name"

这打印,

10.0.0.1
10.2.4.5
10.3.5.6
gateway
server
PC
name_of_device
name_of_device
name_of_device

但是预期的输出应该是这样的,

10.0.0.1 gateway name_of_device
10.2.4.5 server name_of_device
10.3.5.6 PC name_of_device

尝试了不同的选择,例如,

将输出分配给另一个变量并回显它,

# output="$source_ip $tag_text"
# echo -e $output

printf 语句:

# printf "%-20s | %-20s" "$source_ip" "$tag_text"


# printf "$source_ip" "$tag_text"

最佳答案

awk 当然是用于此的正确工具,但您也可以:

curl http://example.com/1.txt |
while IFS=, read ip type name rest; do
echo $ip $type $name
done

while 循环结束后变量将失去它们的值,因为它在子 shell 中。

关于linux - shell解析csv文件,将字段分配给变量并在多列中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39291943/

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