Removing the colon from [/system clock get clock]?

:local archive “name@fake.com
:local YYYYMMDD “the date formatted in numerical format thanks to another site”
:local from ([/system identity get name] . “fake.com”)
:local emailServer “exchange.fake.local”
:local time [/system clock get time]
:local systemName ([/system resource get platform] . “" . [/system identity get name])
:local backup ($systemName . "
” . $YYYYMMDD . “" . $time . “.backup”)
:local export ($systemName . "
” . $YYYYMMDD . “_” . $time. “.rsc”)
/system backup save password=“hunter2” name=$backup
/export compact file=$export

Any ideas how I can get [/system clock get time] to be HHMMSS instead of HH:MM:SS?

:slight_smile:

this can help you

put ( [pick [system clock get time] 0 2] . [pick [system clock get time] 3 5] . [pick [system clock get time] 6 8] )