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.
awk '
{
line=$0
newline=""
while(match(line,"[0-9]+")) {
newline=newline substr(line,1,RSTART-1) substr(line,RSTART,RLENGTH)*2
line=substr(line,RSTART+RLENGTH)
}
print newline line
}
'
perl -pe '$_ =~ s/(\d+)/$1*2/eg;'