将 CSV 拆分为以其中一列命名的文件

发布于 2024-12-25 22:31:53 字数 413 浏览 0 评论 0原文

我有这样的 CSV:

apple,file1.txt
banana,file1.txt
carrot,file2.txt

如何才能将左列中的所有项目放入以右列中的项目命名的文件中?例如 file.txt 将包含此列表:

apple
banana

到目前为止,我有这个:

while read line 
do
    firstcolumn=$(echo $line | awk -F ",*" '{print $1}')
    secondcolumn=$(echo $line | awk -F ",*" '{print $2}')

done < Text/selection.csv

I have CSVs like this:

apple,file1.txt
banana,file1.txt
carrot,file2.txt

How can I get it to place all of the items from the left column into files named with the items in the right column? E.g. file.txt would contain this list:

apple
banana

So far, I have this:

while read line 
do
    firstcolumn=$(echo $line | awk -F ",*" '{print $1}')
    secondcolumn=$(echo $line | awk -F ",*" '{print $2}')

done < Text/selection.csv

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

请你别敷衍 2025-01-01 22:31:53

使用 awk 的一种方法:

awk 'BEGIN { FS = "," } { print $1 >> $2 }' infile

One way using awk:

awk 'BEGIN { FS = "," } { print $1 >> $2 }' infile
李白 2025-01-01 22:31:53

这应该有效 -

awk -F, '{a[$1]=$2} END{for (i in a) print i > a[i]}' file

测试:

[jaypal:~/Temp] cat file
apple,file1.txt
banana,file1.txt
carrot,file2.txt

[jaypal:~/Temp] awk -F, '{a[$1]=$2} END{for (i in a) print i > a[i]}' file

[jaypal:~/Temp] ls file*
file      file1.txt file2.txt

[jaypal:~/Temp] cat file1.txt 
apple
banana

[jaypal:~/Temp] cat file2.txt 
carrot

更新:

你也可以这样做 -

awk -F, '{print $1 > $2}' INPUT_FILE

This should work -

awk -F, '{a[$1]=$2} END{for (i in a) print i > a[i]}' file

Test:

[jaypal:~/Temp] cat file
apple,file1.txt
banana,file1.txt
carrot,file2.txt

[jaypal:~/Temp] awk -F, '{a[$1]=$2} END{for (i in a) print i > a[i]}' file

[jaypal:~/Temp] ls file*
file      file1.txt file2.txt

[jaypal:~/Temp] cat file1.txt 
apple
banana

[jaypal:~/Temp] cat file2.txt 
carrot

Update:

You can also do something like this -

awk -F, '{print $1 > $2}' INPUT_FILE
篱下浅笙歌 2025-01-01 22:31:53

纯 Bash 并假设所有目标文件均为空或不存在:

while IFS=',' read   item file ; do
  echo "$item" >> "$file"
done < "$infile"

Pure Bash and under the assumption that all target files are empty or non-existing:

while IFS=',' read   item file ; do
  echo "$item" >> "$file"
done < "$infile"
追风人 2025-01-01 22:31:53

sed 喜欢这个东西...

sed "s%\(.*\),\(.*\)%echo \1 >> \2 %" inputfile.txt |嘘

sed loves this stuff...

sed "s%\(.*\),\(.*\)%echo \1 >> \2 %" inputfile.txt | sh

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文