This is mine
I only tested id in ROS6.6 but it should work on most versions.
File name is formatted according to
to sort them.
{ :local curDate [/system clock get date] :local curTime [/system clock get time] :local systemName [/system identity get name] :local curMonth [:pick $curDate 0 3] :set curMonth ( [ :find key="$curMonth" in="jan,feb,mar,apr,may,jun,jul,aug,sep,oct,nov,dec" from=-1 ] / 4 + 1) if ( $curMonth < 10 ) do={ :set curMonth ( "0".$curMonth ) } else={ :set curMonth $curMonth } :local curDay [:pick $curDate 4 6] :local curYear [:pick $curDate 7 13] :local curHour [:pick $curTime 0 2] :local curMin [:pick $curTime 3 5] / /export compact file=( "$systemName"."-"."$curYear"."$curMonth"."$curDay" ."-"."$curHour"."$curMin" ) }
Bye