i have more than 100 html files evan more than 400 html files and my all files name are like this 1.html, 2.html 3.html 4.html so i can convert them all in single epub ? and i need to write all file names in command ? On Friday, September 9, 2022 at 6:01:30 PM UTC+5 BPJ wrote: > Generally you can just list them on the command line and pandoc will > concatenate them: > > ``````shell > pandoc -o all.pdf -f html html1 html2 html3 > `````` > > Globbing might work > > ``````shell > pandoc -o all.pdf -f html html* > `````` > > but note that the shell sorts "alphabetically" so html10 sorts before > html2! You might want to zero-pad the numbers in the file names: > > html00, html01 .. html09, html10 .. html99 > > so that there are two (or three) digits in every filename. I usually name > my files using three digits with "gaps" *before* the actual name: > > 000-frontmatter.md > 010-preface.md > 020-introduction.md > 030-preliminaries.md > 040-advanced.md > > so that if I later want to insert a chapter between say the third and > fourth chapter I can number it 035-something.md and if I want to insert a > chapter before that I can call it 033-whatever.md so that I don't need to > renumber several files and globbing > > ``````shell > pandoc -o all.pdf *.md > `````` > > will still give me all the files in correct order. > > /bpj > > Den fre 9 sep. 2022 12:31mr vicky skrev: > >> hello >> i want to create pdf file from multiple html file. And the files name are >> like this >> html1 >> html2 >> html3 >> >> i want to convert them in single pdf or epub file >> please can you explain me command and way of doing this ? >> >> Thank you >> >> -- >> You received this message because you are subscribed to the Google Groups >> "pandoc-discuss" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to pandoc-discus...-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/pandoc-discuss/caf40fb8-07cf-44a4-b0b6-732e8b5e9a5fn%40googlegroups.com >> >> . >> > -- You received this message because you are subscribed to the Google Groups "pandoc-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/2ec806d1-af88-4023-9d8b-fb2852935dfen%40googlegroups.com.