Artificial intelligent assistant

How do I download all files listed in an array? I want to download all files in this GitHub directory to `/usr/share/enlightenment/data/config`. I have this script: L=('e.cfg' 'e_randr.cfg' 'exehist.cfg' 'module.battery.cfg' 'module.clock.cfg' 'module.conf.cfg' 'module.everything-apps.cfg' 'module.everything-files.cfg' 'module.everything.cfg' 'module.gadman.cfg' 'module.ibar.cfg' 'module.notification.cfg' 'module.pager.cfg' 'module.syscon.cfg' 'module.tasks.cfg') pushd /usr/share/enlightenment/data/config for i in $L do sudo wget -c $JEF/$i #$JEF is defined in my ~/.bashrc script done popd but it just downloads `e.cfg` and that is it.

How about this? Fewer quotes, parethesis, and brackets, and other syntax!:


L='e.cfg e_randr.cfg exehist.cfg etc'

for i in $L
do
echo wget -c "$JEF/$i" #$JEF is defined in my ~/.bashrc script
done


This is oldest and most common way to do it. More people understand this. Arrays are extensions that I have never used.

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 814d8aa7942f50e4243db955e6d2931b