Skip to content

Instantly share code, notes, and snippets.

View asbiin's full-sized avatar

Alexis Saettler asbiin

View GitHub Profile
@asbiin
asbiin / CLA.md
Last active February 28, 2018 23:15 — forked from djaiss/CLA.md
Monica Contributor License Agreement

Thank you for your interest in contributing to software projects managed by Monica (“We” or “Us”).

TLDR: By signing Monica's Contributor License Agreement, known as a CLA, you confirm that:

1. Anyone can use your contributions anywhere, for free, forever.

2. Your contributions do not infringe on anyone else's rights.


#!/bin/bash
xdebugfile=xdebug-2.6.0alpha1.tgz
phpversion=7.2
function update_ini() {
if $(grep -q "$1" $inifile); then
sudo sed -i "s/\($1\).*/\1=$2/" $inifile;
else
echo -e "\n$1=$2" | sudo tee -a $inifile;