#!/bin/sh
# Create links

for G in frame*.xpm; do
   rm -rf d$G
   ln -sf $G d$G 
done

