axel "http://downloads.ghostscript.com/public/ghostpdl-9.09.tar.gz"
atool -x ghostpdl-9.09.tar.gz
sudo apt-get install libxext-dev libxt-dev libjpeg-dev
cd ghostpdl*
./configure
make xps
sudo make install
sudo cp xps/obj/gxps /usr/bin/
for i in *.xps; do gxps -sDEVICE=pdfwrite -o "${i%.*}.pdf" "$i";done;
~~DISCUSSION~~