在pandoc.org的常见问题解答中,有针对Linux和Mac用户的说明:
for f in *.txt; do pandoc "$f" -s -o "${f%.txt}.rtf"; done
但没有针对Windows用户的说明。
答案 0 :(得分:0)
for %F in (*.txt) do pandoc %F > %F~n.html
答案 1 :(得分:0)
我遇到了同样的问题而我找不到解决方案。
问题是在PowerShell中你不能使用像* .md这样的通配符。这只是一个Unix的事情。
您必须在Windows中使用单个文件。
答案 2 :(得分:0)
这个问题让我感到沮丧,因此我编写了一个批处理文件,您可以从cmd或PowerShell中运行该文件,以对文件夹/目录以及所有子目录中特定类型的所有文件调用pandoc(即,递归)。代码如下。将代码复制到记事本中,并将其另存为pancompile.bat
。从cmd运行最简单。在PowerShell中,您以.\pancompile.bat
的身份调用它。如果您运行不带任何参数的命令,它将像下面这样吐出示例用法:
Usage: pancompile DIRECTORY FILENAME [filemask] ["options"]
Uses pandoc to compile all documents in specified directory and subdirectories to a single output document
DIRECTORY the directory/folder to parse recursively (passed to pandoc -s);
use quotation marks if there are spaces in the directory name
FILENAME the output file (passed to pandoc -o); use quotation marks if spaces
filemask an optional file mask/filter, e.g. *.md; leave blank for all files
"options" optional list of pandoc commands (must be in quotation marks)
Minimal example: pancompile docs complete_book.docx
Typical example: pancompile "My Documents" "Complete Book.docx" *.md "-f markdown -t docx --standalone --toc"
这是pancompile.bat
的代码。请注意,仅当所有目录路径和文件的字符总数少于8092时,它才能按预期工作:
@echo off
:: Check if user entered required options
if $%1$==$$ goto usage
if $%2$==$$ goto usage
setlocal disableDelayedExpansion
set "mask=%3"
if $%3$==$$ set "mask=*"
:: Remove quotation marks from pandoc options
set options=%4
if not $%4$==$$ set options=%options:"=%
set "files="
:: This will only work if the total characters of all the paths and filenames together is less than 8192 characters
for /r %1 %%F in (%mask%) do call set files=%%files%% "%%F"
echo/
echo The following pandoc command will be executed:
echo/
echo pandoc -s %files% -o %2 %options%
echo/
:ask
echo Would you like to run pandoc on the files listed above? (Y/N)
set INPUT=
set /P INPUT=?: %=%
if /I "%INPUT%"=="y" goto yes
if /I "%INPUT%"=="n" goto no
goto ask
:yes
pandoc -s %files% -o %2 --wrap=none %options%
echo Done
goto exit
:no
echo Command was cancelled
goto exit
:usage
echo/
if $%1$==$$ (
echo This batch file needs to be run from the command line or from PowerShell
echo/
)
echo Usage: pancompile DIRECTORY FILENAME [filemask] ["options"]
echo Uses pandoc to compile all documents in specified directory and subdirectories to a single output document
echo/
echo DIRECTORY the directory/folder to parse recursively (passed to pandoc -s);
echo use quotation marks if there are spaces in the directory name
echo FILENAME the output file (passed to pandoc -o); use quotation marks if spaces
echo filemask an optional file mask/filter, e.g. *.md; leave blank for all files
echo "options" optional list of pandoc commands (must be in quotation marks)
echo/
echo Minimal example: pancompile docs complete_book.docx
echo Typical example: pancompile "My Documents" "Complete Book.docx" *.md "-f markdown -t docx --standalone --toc"
:exit
:: End with a pause so user can read messages
echo/
echo Press any key to exit ...
pause>nul