#!/bin/sh

for f in `ls *.R`;do
  echo $f: 
  r $f
done
