How to split pdf pages in Ubuntu using pdftk

You can use this command to split pdf pages in Ubuntu:

pdftk <original file name>.pdf cat <page number> output <output file name>.pdf

Example: get page number 2 from the original pdf:

pdftk mydoc.pdf cat 2 output page2.pdf