Forrest logo
back to the pdfjam tool

pdfjam:tldr:6493a

pdfjam: Reverse the order of pages within each given file and concatenate them.
$ pdfjam ${files---} ${last-1} --suffix ${reversed}
try on your machine

This command is using the "pdfjam" tool to perform some operations on PDF files. Here's a breakdown of the command:

  • "pdfjam" is the name of the tool or command being executed.
  • "${files---}" represents a placeholder for the input PDF files.
  • "${last-1}" represents a placeholder for the second-to-last file in the provided list.
  • "--suffix" is an option that specifies the suffix to be added to the output file names.
  • "${reversed}" represents a placeholder for the reversed suffix.

In summary, this command takes a list of PDF files as input, selects the second-to-last file from the list, and then appends a reversed suffix to the output file names. The specific details of the suffix and reversed variable values are not provided in the command itself.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pdfjam tool