Can I get rid of eval here? I'm trying to set $current_database with the appropriate variable determined by user input (country and action)
# User input
country="es"
action="sales"
# Possible variables for current_database
final_es_sales_path="blahblah/es/sales.csv"
final_en_support_path="yadayada/en/support.csv"
final_it_inventory_path="humhum/it/inventory.csv"
...
current_database=$(eval echo \${final_${country}_${action}_path})
en,es,itare language codes (ISO 639-1), not country codes. Country codes (ISO 3166-1) look like this:ES,MX,GB,US,IT(to name some countries where these languages are spoken). – Paŭlo Ebermann Jul 25 '11 at 16:20