- Assuming that you have already installed php and apache
- Install xDebug php extension
# Ubuntu 16.04, php 7.0
sudo apt-get install php-xdebug
# Ubuntu 14.04, php 5.6
sudo apt-get install php5-xdebug
| #!/bin/bash | |
| # WannaCry BTC address report script | |
| # 5/12/17 -- chris_commat_misentropic_commercial | |
| sep() { | |
| for a in {1..80}; do printf "=" ; done ; echo | |
| } | |
| filt() { | |
| sed 's#<.*">##;s#<.*##' | awk '{print $1}' | |
| } |
# Ubuntu 16.04, php 7.0
sudo apt-get install php-xdebug
# Ubuntu 14.04, php 5.6
sudo apt-get install php5-xdebug
A simple Ghostscript command to merge two PDFs in a single file is shown below:
gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH 1.pdf 2.pdfInstall Ghostscript:
Type the command sudo apt-get install ghostscript to download and install the ghostscript package and all of the packages it depends on.