快速的 Linux 问题

发布于 2024-07-29 11:33:23 字数 141 浏览 10 评论 0原文

我正在尝试执行以下操作:

$OOOPYTHON DocumentConverter.py .odt .pdf

对于特定文档中的所有 ODT 文件,并寻找正确的语法将所有 odt 转换为 pdf。

谢谢! 杰克

I'm trying to do the following:

$OOOPYTHON DocumentConverter.py .odt .pdf

for all of the ODT files i have in a particular document and looking for the right syntax to convert all odts to pdfs.

Thanks!
Jake

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

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

发布评论

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

评论(3

凝望流年 2024-08-05 11:33:23
for file in *.odt; do
    $OOOPYTHON DocumentConverter.py "$file" "${file%.odt}.pdf"
done
for file in *.odt; do
    $OOOPYTHON DocumentConverter.py "$file" "${file%.odt}.pdf"
done
ペ泪落弦音 2024-08-05 11:33:23

您可以使用查找,例如:

find /path/to/files/ -name '*.odt' -exec python /path/to/DocumentConverter.py '{}' '{}.pdf' \;

You can use find, ex :

find /path/to/files/ -name '*.odt' -exec python /path/to/DocumentConverter.py '{}' '{}.pdf' \;
梅窗月明清似水 2024-08-05 11:33:23
for file in `ls *.odt`
do
   DocumentConverter.py $file ${file%.odt}.pdf
done

或者无论实际的命令语法是什么

for file in `ls *.odt`
do
   DocumentConverter.py $file ${file%.odt}.pdf
done

or whatever the actual command syntax is

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