Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Ubuntu,并且有一个已知的 URL,我需要将其下载/保存为 CSV。URL基于一个参数并且经常为项目更改,所以我想编写一个脚本来进行下载,这样我就不必每次都手动保存它。
我试图使用 wget 来获取文件,但网站将内容显示为 CSV,而文件本身是 HTML。如何将页面内容保存为纯 csv?
wget -O my.csv [url]
任何人都可以帮忙吗?
似乎文件中唯一的 HTML 位于<br />每一行的末尾。要删除它,您可以
<br />
wget -O- "$URL" | sed 's#<br />$##' > my.csv