Sure,
make motion trail select it (or as many of them as you like) and run this:
CODE
{
$list=ls -dag -sl -et snapshotShape
;
for ($item in $list){
$pts=getAttr ($item+".pts")
;
int $len=size($pts)/4;
$crv = curve -d 1 -p ($pts[0]) ($pts[1]) ($pts[2]) -k 0
;
for ($i=1;$i<$len;$i++)
curve -os -a -p ($pts[$i*4]) ($pts[$i*4+1]) ($pts[$i*4+2]) $crv;
}
}