mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-10 05:43:30 +01:00
10 lines
179 B
Text
10 lines
179 B
Text
|
#! /bin/bash
|
||
|
pdftotext $1 -
|
||
|
|
||
|
## Function for diffing pdf's for git
|
||
|
# in ~/.gitconfig add
|
||
|
## [diff "pdf"]
|
||
|
## textconv = pdf2txt
|
||
|
# in repo's .gitattributes add
|
||
|
## *.pdf diff=pdf
|