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.
(我是c的新手)
我想知道如何将位于网络上的 .txt 文件中的文本提取到变量中。我正在寻找 libcurl 或其他东西,但无法找到如何在 Peppermint Os(基于 Ubuntu/Debian)上使用它。
谁能帮帮我?
如果您不是绝对需要在程序中进行下载,您可以简单地使用 wget 或 curl 下载文件,然后将输出通过管道传输到程序的 STDIN,然后将输入存储在变量中。
这将允许您使用任何文件(来自网络或非网络)作为输入。