Forrest logo
back to context overview

gs

List of commands for gs:

  • gs:tldr:0eb02 gs: Extract pages from a PDF file.
    $ gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=${output-pdf} ${input-pdf}
    try on your machine
    explain this command
  • gs:tldr:37d09 gs: To view a file.
    $ gs -dQUIET -dBATCH ${file-pdf}
    try on your machine
    explain this command
  • gs:tldr:5c2a9 gs: Merge PDF files.
    $ gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=${output-pdf} ${input1-pdf} ${input2-pdf}
    try on your machine
    explain this command
  • gs:tldr:c84cf gs: Convert PDF file (pages 1 through 3) to an image with 150 dpi resolution.
    $ gs -dQUIET -dBATCH -dNOPAUSE -sDEVICE=jpeg -r150 -dFirstPage=${1} -dLastPage=${3} -sOutputFile=${output_%d-jpg} ${input-pdf}
    try on your machine
    explain this command
  • gs:tldr:e0577 gs: Reduce PDF file size to 150 dpi images for reading on a e-book device.
    $ gs -dNOPAUSE -dQUIET -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -sOutputFile=${output-pdf} ${input-pdf}
    try on your machine
    explain this command
back to context overview