#!/bin/bash # This little ditty replaces beer_data with wine_Data # TODO: Update this to take commands so I can basically create a template project for this # it's the third time i've used this as a basis for a project its becoming habit lol find . \( ! -regex '.*/\..*' \) -type f | xargs sed -i 's/beer_data/wine_data/g'