https://github.com/tweekmonster/pdfpop
A very simple macOS command line utility for creating PDFs from an existing PDF
https://github.com/tweekmonster/pdfpop
command-line macos pdf
Last synced: about 2 months ago
JSON representation
A very simple macOS command line utility for creating PDFs from an existing PDF
- Host: GitHub
- URL: https://github.com/tweekmonster/pdfpop
- Owner: tweekmonster
- License: mit
- Created: 2017-02-06T16:43:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T17:05:20.000Z (over 9 years ago)
- Last Synced: 2025-07-25T04:06:11.754Z (11 months ago)
- Topics: command-line, macos, pdf
- Language: Objective-C
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pdfpop
A very simple macOS command line utility for creating PDFs from an existing
PDF.
## Build
**Note:** Xcode command line tools are required.
```shell
$ git clone https://github.com/tweekmonster/pdfpop
$ cd pdfpop
$ make
```
## Usage
It accepts 3 arguments:
- `-in`: The source PDF file
- `-out`: The output PDF file (optional)
- `-range`: A range of pages
If `-out` is not specified, the source PDF filename is used with the current
date and time appended.
A range of pages can be a single number:
```
$ pdfpop -in file.pdf -range 2
```
Or an actual range of pages (must be ascending order):
```
$ pdfpop -in file.pdf -range 2-5
```
Or a list of page ranges:
```
$ pdfpop -in file.pdf -range 2-5,10,20-30
```
## License
[MIT](LICENSE)