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 'BEGIN{ORS=","}1'
[gray]# or[/gray]
sed -n '1h;1!H;${g;y/\n/,/;p}'
sed -n '1h;1!H;${g;s/\n/,/g;p}'