#!/bin/bash

#Get the runme file, read it, and display steps
rm -rf orglist_temporary_file
cat runme.m | grep perform |  sed "s/if perform(org,steps,'//g" | sed "s/')%{{{1//g" > orglist_temporary_file

count=0;
echo "Available runme steps"
for i in `cat orglist_temporary_file`
do
	count=$(($count+1));
	echo "$count  $i"
done

rm -rf orglist_temporary_file
