| Server IP : 82.64.35.208 / Your IP : 172.20.0.1 Web Server : Apache/2.4.67 (Debian) System : Linux c1d185609d2c 6.12.76-linuxkit #1 SMP Thu May 28 18:54:18 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /bin/X11/ |
Upload File : |
#!/bin/sh # Convert PostScript to PDF. # Currently, we produce PDF 1.4 by default, but this is not guaranteed # not to change in the future. version=14 ps2pdf="`dirname \"$0\"`/ps2pdf$version" if test ! -x "$ps2pdf"; then ps2pdf="ps2pdf$version" fi exec "$ps2pdf" "$@"