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.
- Host: GitHub
- URL: https://github.com/idlephysicist/pdf-split
- Owner: IdlePhysicist
- Created: 2019-03-02T21:59:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-09T15:11:25.000Z (almost 7 years ago)
- Last Synced: 2025-02-08T13:27:44.171Z (11 months ago)
- Topics: ghostscript, pdf, pdf-split, python
- Language: Python
- Size: 1.35 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```