4

pdftk -v doesn't do the trick. Neither does pdftk -h. That just fills the screen past the available history with a manual. But it does not tell me what version I'm running.

Any ideas?

I'm running Windows.

Kurt Pfeifle
  • 86,724
  • 23
  • 248
  • 345
neubert
  • 15,947
  • 24
  • 120
  • 212

2 Answers2

7

On my WinXP (and Ubuntu) pdftk --version works just fine.
e.g. Ubuntu
enter image description here

Jakob
  • 19,815
  • 6
  • 75
  • 94
2

On Windows you can also use more if the "screen fills", as you said:

pdftk --help | more

The very first line of the output should hold the version information you are looking for.

pdftk --version

should also work just fine on Windows.

Kurt Pfeifle
  • 86,724
  • 23
  • 248
  • 345