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.
我有一个 python 脚本,它每 x 分钟将一个 url 写入一个 txt 文件。
我希望通过 xdg-open 在浏览器上打开这个 url。
xdg-open /home/user/test.txt (opens the txt file) xdg-open https://example.url (opens the url)
我尝试将 cat 命令与 xdg-open 结合使用,但没有奏效。
有没有什么办法可以在没有辅助脚本的情况下完成这项工作?
你可以试试xargs:
xargs
网址.txt:
https://google.com https://github.com
命令:
< ~/url.txt xargs -I % xdg-open %