An open API service indexing awesome lists of open source software.

https://github.com/idlephysicist/pdf-split

Simple script to split a pdf by a range of pages.
https://github.com/idlephysicist/pdf-split

ghostscript pdf pdf-split python

Last synced: 9 months ago
JSON representation

Simple script to split a pdf by a range of pages.

Awesome Lists containing this project

README

          

# PDF Split
#### IdlePhysicist, 2019

## Installation

Run the install script

```shell
chmod +x install.sh
./install.sh
```

The program is essentially a middleman between you and [GhostScript](https://www.ghostscript.com/). All it does is take your command arguments and pass them into a long string of args to GhostScript.

## Usage

- Range of pages:

Args: ` -r -`

```shell
$ pdfsplit aipy.pdf -r 10-18
```

- Individual pages:

Args: ` -i `

```shell
$ pdfsplit aipy.pdf -i 10
```