#!/bin/bash

echo Consumer Dis. > test.txt
echo >> test.txt
./symbols consumerdis.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Consumer Stap. >> test.txt
echo >> test.txt
./symbols consumerstap.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Energy >> test.txt
echo >> test.txt
./symbols energy.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Financials >> test.txt
echo >> test.txt
./symbols financials.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Food >> test.txt
echo >> test.txt
./symbols food.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo HealthCare >> test.txt
echo >> test.txt
./symbols healthcare.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Industrials >> test.txt
echo >> test.txt
./symbols industrials.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo IT >> test.txt
echo >> test.txt
./symbols it.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Materials >> test.txt
echo >> test.txt
./symbols materials.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Telecom >> test.txt
echo >> test.txt
./symbols telecom.txt >> test.txt
echo >> test.txt
echo >> test.txt

echo Util >> test.txt
echo >> test.txt
./symbols util.txt >> test.txt
echo >> test.txt
