#!/bin/sh file=nginx-ingress-proxy.yaml rm -f $file 2>/dev/null for f in $(ls config/*.yaml); do echo "# $f" >> $file cat $f >> $file done