#!/usr/bin/env bash### Description: Run a script from the Hubzilla util directory in the container## Usage: util <script> [args...]## Example: ddev util addon list allscript=$1&&shiftif[-x./util/$scrpt];then./util/$script$*elseecho"[-] Error: util/$script was not fund."fi