32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Download company logos
|
||
|
|
cd static/images/companies
|
||
|
|
|
||
|
|
# Olympic Broadcasting Services
|
||
|
|
curl -sL "https://logo.clearbit.com/obs.tv" -o olympic-broadcasting.png 2>/dev/null || echo "OBS logo not found"
|
||
|
|
|
||
|
|
# AENA
|
||
|
|
curl -sL "https://logo.clearbit.com/aena.es" -o aena.png 2>/dev/null || echo "AENA logo not found"
|
||
|
|
|
||
|
|
# SAP
|
||
|
|
curl -sL "https://logo.clearbit.com/sap.com" -o sap.png 2>/dev/null || echo "SAP logo not found"
|
||
|
|
|
||
|
|
# Gigya (now SAP CDC)
|
||
|
|
curl -sL "https://logo.clearbit.com/gigya.com" -o gigya.png 2>/dev/null || echo "Gigya logo not found"
|
||
|
|
|
||
|
|
# Accenture
|
||
|
|
curl -sL "https://logo.clearbit.com/accenture.com" -o accenture.png 2>/dev/null || echo "Accenture logo not found"
|
||
|
|
|
||
|
|
# Megabanner
|
||
|
|
curl -sL "https://logo.clearbit.com/megabanner.es" -o megabanner.png 2>/dev/null || echo "Megabanner logo not found"
|
||
|
|
|
||
|
|
# Everis
|
||
|
|
curl -sL "https://logo.clearbit.com/everis.com" -o everis.png 2>/dev/null || echo "Everis logo not found"
|
||
|
|
|
||
|
|
# Indra
|
||
|
|
curl -sL "https://logo.clearbit.com/indra.es" -o indra.png 2>/dev/null || echo "Indra logo not found"
|
||
|
|
|
||
|
|
echo "✅ Company logos downloaded"
|
||
|
|
ls -lh
|