Skip to content

Instantly share code, notes, and snippets.

View DaanSelen's full-sized avatar
🤠
Programming

DaanSelen DaanSelen

🤠
Programming
View GitHub Profile
#!/bin/bash
#
# Possible args: "--do-nginx" to refresh the nginx files. They might be old.
#
args=("$@")
_contains_arg() {
local search="$1"
for arg in "${args[@]}"; do