I wrote a shell script for converting the .mat files to .c and .c files to .so files...please let me know whether it is correct or not ........
Code:
echo "enter file name:\c" read flname if grep "$flname.mat" FSEIC then gen_tp4 $flname.mat if grep "$flname.c" FSEIC then rtt_make $flname.c > SOFILES else echo "compilation error" else echo "file not found" fi

