0
在上pandoc.org的常見問題有Linux和Mac用戶的指令:如何將pandoc用於Windows中文件夾中的所有文件?
for f in *.txt; do pandoc "$f" -s -o "${f%.txt}.rtf"; done
但對於Windows用戶沒有指令。
在上pandoc.org的常見問題有Linux和Mac用戶的指令:如何將pandoc用於Windows中文件夾中的所有文件?
for f in *.txt; do pandoc "$f" -s -o "${f%.txt}.rtf"; done
但對於Windows用戶沒有指令。
for %F in (*.txt) do pandoc %F > %F~n.html
我面臨同樣的問題,我無法找到一個解決方案。
的問題是,在PowerShell中不能使用通配符如* .MD。這只是一個Unix的事情。
您將不得不在Windows中使用單個文件。
我試着去做。但是我不能在命令提示符下打開輸出文件:'C:\ Users \ Admin \ Documents \ Folder> pandoc input.html 1> output.html〜n.docx'。但是如果我使用'pandoc output.docx input.html',我可以打開輸出文件。但我不知道如何爲多個文件 – Nipayl
做到這一點,如果你想要做轉換爲DOCX你顯然需要更換'在我張貼的符合'.docx' .html' ... – mb21
當然,我做了所以對於(* .html)中的%F做pandoc%F>%F〜n.docx'。但它不起作用 – Nipayl