Some checks failed
Build and Push Image / Build and push image (push) Has been cancelled
8 lines
325 B
Bash
Executable File
8 lines
325 B
Bash
Executable File
#!/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'
|