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] start=5
[blue]master #[/blue] finish=10
[blue]master #[/blue] seq $start $finish
5
6
7
8
9
10
#!/bin/ksh
# Because there's no 'seq' on Solaris
awk -v START=$1 -v FINISH=$2 'BEGIN { for (i=START; i <= FINISH; i++) { print i } }'