gpt4 book ai didi

bash - 如何在 hadoop 映射器中使用 shell 脚本获取值

转载 作者:可可西里 更新时间:2023-11-01 16:16:14 25 4
gpt4 key购买 nike

我想处理 PCAP 文件,然后使用 WholeFileInputFormat。 map 的输入是<filename,content> .如何使用shell脚本获取内容?

最佳答案

# test file:
echo -e "foo bar\tthis is\nthe rest of the content" > file

contents=$( sed '1s/[^\t]*\t//' file )
label=$( sed '1{ s/\t.*//; q }' file )

您必须引用变量以保留空格。

echo "$label"
echo "$contents"

你应该总是引用变量,除非你知道为什么你不应该这样做

关于bash - 如何在 hadoop 映射器中使用 shell 脚本获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20567840/

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