gpt4 book ai didi

python - 在 osx 上将 .py(文本文件)批量转换为 .pdf

转载 作者:太空宇宙 更新时间:2023-11-03 13:44:58 24 4
gpt4 key购买 nike

我教授 Python 类(class),并且有大量提交考试的 .py 文件。我想将所有这些转换为 pdf,以便我可以在我的 ipad 上的 IAnnotate 中打开它们,标记它们并将它们返回给学生。如何以批处理模式进行此类转换?

最佳答案

试过小牛队:

#!/bin/bash
for file in *.py; do
textutil -convert rtf -font 'Courier New' -fontsize 9 ${file} -output ${file}.rtf
cupsfilter -D ${file}.rtf > ${file}.pdf
done

生成的文件将被命名为 *.py.pdf

关于python - 在 osx 上将 .py(文本文件)批量转换为 .pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22119484/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com