aboutsummaryrefslogtreecommitdiffstats
path: root/bin/tex2pdf
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-04-21 02:24:33 +0200
committerDavid Runge <david.runge@frqrec.com>2014-04-21 02:24:33 +0200
commitd06c78c23084888f0dfe07866038b8bccf31d8e1 (patch)
treef623f4eb24afa0e8e489f9e33361bc17cf15d736 /bin/tex2pdf
parent0accbbe9c478a27e4fba31e9365a5ee3a534421c (diff)
downloaddotfiles-d06c78c23084888f0dfe07866038b8bccf31d8e1.tar.gz
dotfiles-d06c78c23084888f0dfe07866038b8bccf31d8e1.tar.bz2
dotfiles-d06c78c23084888f0dfe07866038b8bccf31d8e1.tar.xz
dotfiles-d06c78c23084888f0dfe07866038b8bccf31d8e1.zip
Fixing correct usage of log file
Diffstat (limited to 'bin/tex2pdf')
-rwxr-xr-xbin/tex2pdf46
1 files changed, 23 insertions, 23 deletions
diff --git a/bin/tex2pdf b/bin/tex2pdf
index 9309f5f..6eaaef6 100755
--- a/bin/tex2pdf
+++ b/bin/tex2pdf
@@ -1,27 +1,27 @@
#!/bin/bash
-$log_dest = $log_dest
-rm -rf "$log_dest"
-touch "$log_dest"
-echo "tex2pdf called with $1.tex">>$log_dest
-echo "#####################################################">>$log_dest
-echo "################## pdflatex, run #1 #################">>$log_dest
-echo "#####################################################">>$log_dest
-pdflatex -interaction=nonstopmode $1.tex>>$log_dest
-echo "bibtex:">>$log_dest
-bibtex $1.aux>>$log_dest
-echo "#####################################################">>$log_dest
-echo "################## pdflatex, run #2 #################">>$log_dest
-echo "#####################################################">>$log_dest
-pdflatex -interaction=nonstopmode $1.tex>>$log_dest
-echo "#####################################################">>$log_dest
-echo "################## pdflatex, run #3 #################">>$log_dest
-echo "#####################################################">>$log_dest
-pdflatex -interaction=nonstopmode $1.tex>>$log_dest
-echo "#####################################################">>$log_dest
-echo "Launching evince with $1.pdf.">>$log_dest
+logdestination="$HOME/.log/tex2pdf.log"
+rm -rf $logdestination
+touch $logdestination
+echo "tex2pdf called with $1.tex">>$logdestination
+echo "#####################################################">>$logdestination
+echo "################## pdflatex, run #1 #################">>$logdestination
+echo "#####################################################">>$logdestination
+pdflatex -interaction=nonstopmode $1.tex>>$logdestination
+echo "bibtex:">>$logdestination
+bibtex $1.aux>>$logdestination
+echo "#####################################################">>$logdestination
+echo "################## pdflatex, run #2 #################">>$logdestination
+echo "#####################################################">>$logdestination
+pdflatex -interaction=nonstopmode $1.tex>>$logdestination
+echo "####### ##############################################">>$logdestination
+echo "################## pdflatex, run #3 #################">>$logdestination
+echo "#####################################################">>$logdestination
+pdflatex -interaction=nonstopmode $1.tex>>$logdestination
+echo "#####################################################">>$logdestination
+echo "Launching evince with $1.pdf.">>$logdestination
evince $1.pdf &
-echo "#####################################################">>$log_dest
-echo "Removing aux,bbl,blg,dvi,lof,log,lot,nav,out,snm,toc.">>$log_dest
-echo "Current directory: $(pwd) and children of depth 1.">>$log_dest
+echo "#####################################################">>$logdestination
+echo "Removing aux,bbl,blg,dvi,lof,log,lot,nav,out,snm,toc.">>$logdestination
+echo "Current directory: $(pwd) and children of depth 1.">>$logdestination
rm -f $1.{aux,bbl,blg,dvi,lof,log,lot,nav,out,snm,toc}
rm -f */*.{aux,bbl,blg,dvi,lof,log,lot,nav,out,snm,toc}