#!/bin/sh
#Image file type converter using fslchfiletype
#This script converts image files into NIFTI format files.
#K. Nemoto 3 Sep 2011
for f in $*
do
 fslchfiletype NIFTI $f
done


