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.
[blue]master #[/blue] seq -f "new connection cpe-%g" 3
new connection cpe-1
new connection cpe-2
new connection cpe-3
seq 3 | sed 's/\(.*\)/new connection cpe-\1\nset nailed-group = \1/'
[gray]# or[/gray]
awk 'BEGIN{for(i=1;i<=3;i++)print"new connection cpe-"i"\nset nailed-group = "i}'