Skip to content

Instantly share code, notes, and snippets.

View Qndrs's full-sized avatar

Robert E. Kuunders Qndrs

  • Qndrs
  • Rotterdam
  • 22:39 (UTC +02:00)
View GitHub Profile
@Qndrs
Qndrs / install_phantomJs.sh
Created May 5, 2023 12:55 — forked from ManuelTS/install_phantomJs.sh
This script installs PhantomJS on your Debian/Ubuntu System
#!/usr/bin/env bash
# This script installs PhantomJS on your Debian/Ubuntu System
#
# Taken from https://gist.github.com/julionc/7476620#gistcomment-2030572 and changed the download directory
#
# This script must be run as root:
# sudo sh install_phantomjs.sh
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2