mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
17 lines
361 B
Plaintext
17 lines
361 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# This bash script automates the process of getting the original pdf2htmlEX
|
||
|
# source
|
||
|
|
||
|
PDF2HTMLEX_VERSION=newBuildSystem
|
||
|
|
||
|
wget https://codeload.github.com/stephengaito/pdf2htmlEX/zip/$PDF2HTMLEX_VERSION
|
||
|
|
||
|
mv $PDF2HTMLEX_VERSION $PDF2HTMLEX_VERSION.zip
|
||
|
|
||
|
sudo apt get unzip
|
||
|
|
||
|
unzip $PDF2HTMLEX_VERSION.zip
|
||
|
|
||
|
mv pdf2htmlEX-$PDF2HTMLEX_VERSION pdf2htmlEX
|