# Pdfcrop Removes whitespace margins from PDF files. Called without arguments on a PDF, it crops all surrounding whitespace. ## Usage ```bash pdfcrop input.pdf # Outputs input-crop.pdf pdfcrop input.pdf output.pdf # Specify output filename ``` ## Batch Processing ```bash ls *.pdf | parallel -j 200% pdfcrop ```