MEL 6個まで追加選択後実行すると次は親の順で一つ一つ親子付けをし縦一列の階層構造をつくります。

string $SBJS[]= `ls -sl`;

select -r $SBJS[0];
select -tgl $SBJS[1];
Parent;
select -cl ;

select -r $SBJS[1];
select -tgl $SBJS[2];
Parent;
select -cl ;

select -r $SBJS[2];
select -tgl $SBJS[3];
Parent;
select -cl ;

select -r $SBJS[3];
select -tgl $SBJS[4];
Parent;
select -cl ;

select -r $SBJS[4];
select -tgl $SBJS[5];
Parent;
select -cl ;

select -r $SBJS[5];
select -tgl $SBJS[6];
Parent;