Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[gray]# any awk[/gray]
[blue]master #[/blue] echo '0023' | awk '{$1=substr($1,1,2)":"substr($1,3)}1'
00:23
[gray]# GNU awk[/gray]
[blue]master #[/blue] echo '0023' | awk '{$1=gensub(/(..)/,"\\1:","",$1)}1'
00:23