sudo cp en_BE /usr/share/i18n/locales/en_BE
sudo localedef -i en_BE -c -f UTF-8 en_BE
echo "en_BE.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
sudo locale-gen
Maybe also change files in /var/lib/locales/supported.d/
| ; with ; | |
| = with = | |
| / with : | |
| ` with è | |
| [ with ( | |
| \ with _ | |
| ] with ) | |
| ' with ' | |
| - with - | |
| / with : |
TODO
| #!/usr/bin/env bash | |
| # Initial creator: Phil Cook | |
| brew_prefix=$(brew --prefix | sed 's#/#\\\/#g') | |
| brew_array=("53","54","55","56","70","71") | |
| php_array=("php53" "php54" "php55" "php56" "php70" "php71") | |
| php_installed_array=() | |
| php_version="php$1" | |
| php_opt_path="$brew_prefix\/opt\/" |
| #!/usr/bin/env bash | |
| echo ">>> Installing Mailhog" | |
| # Download binary from github | |
| sudo wget --quiet -O /usr/local/bin/mailhog https://github.com/mailhog/MailHog/releases/download/v0.2.1/MailHog_linux_amd64 | |
| # Make it executable | |
| sudo chmod +x /usr/local/bin/mailhog |
| diff --git a/Makefile.global b/Makefile.global | |
| index 3a5b1c2..7450162 100644 | |
| --- a/Makefile.global | |
| +++ b/Makefile.global | |
| @@ -13,6 +13,8 @@ all: $(all_targets) | |
| build-modules: $(PHP_MODULES) $(PHP_ZEND_EX) | |
| +build-binaries: $(PHP_BINARIES) | |
| + |
| #!/usr/bin/env bash | |
| # Author Yannick Vanhaeren | |
| # Version 1.0 | |
| set -o errexit | |
| set -o pipefail | |
| set -o nounset | |
| # set -o xtrace | |
| function usage |
| #!/usr/bin/env bash | |
| # Author Yannick Vanhaeren | |
| # Version 1.0.0 | |
| # Functions | |
| ############ | |
| function usage | |
| { | |
| echo "usage: create-vhost [-a email] [-p port] [-e env] [-h] -v vhost_name -d document_root" |
| #!/bin/bash | |
| # Author Yannick Vanhaeren | |
| # Version 0.1 | |
| # Functions | |
| ############ | |
| function usage | |
| { | |
| echo "usage: set_proxy [-p] | [-s] | [-h] mode" |
| #!/usr/bin/env bash | |
| # Author Yannick Vanhaeren | |
| # Version 1.0.0 | |
| # Functions | |
| ############ | |
| function usage | |
| { | |
| echo "usage: php-switch [-a] | [-c] | [-h] | [-r] phpversion" |