#!/bin/sh

SERVER=http://downloads2.ioncube.com/loader_downloads
gl()
{
	LOADER=ioncube_loaders_${1}.tar.gz
	wget -O $LOADER $SERVER/$LOADER
}

gl lin_x86
gl lin_x86-64
gl fre_4_x86
gl fre_6_x86
gl fre_7_x86
gl fre_7_x86-64
gl fre_8_x86-64

exit 0;

