You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
396 B
17 lines
396 B
#!/usr/bin/env bash
|
|
|
|
cd /source
|
|
|
|
userid="$(cat userid.info)"
|
|
|
|
# Script to build an HTML site from the PDF source
|
|
pdf2htmlEX --zoom 1.5 --embed cfijo --dest-dir out DPSResume.pdf
|
|
chown -R $userid:$userid out/
|
|
chmod -R 666 out/
|
|
chmod u+x out/
|
|
mv out/DPSResume.html out/index.html
|
|
|
|
tar -czvf ResumeSite.tar.gz -C out/ .
|
|
chown $userid:$userid ResumeSite.tar.gz
|
|
chmod 666 ResumeSite.tar.gz
|
|
rm -rf out
|