Add rg-compose function

This commit is contained in:
Eric Torres 2023-11-27 09:07:27 -08:00
parent ee09c88ac2
commit 9c7c5f3362

View File

@ -0,0 +1,7 @@
rg-compose() {
if [[ -z "${1}" ]]; then
return 1
else
rg "$1" **/docker-compose.yml
fi
}