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]# just to contain the required counting to 2[/gray]
sed 's/[^.]\+\./90./2' /input/file
[gray]# or in this case there would be the same[/gray]
sed 's/\.[^.]\+/.90/' /input/file
[gray]# or[/gray]
sed 's/\.[^.]\+\./.90./' /input/file
sed 's/[^.]\+/90/2' /input/file
sed '/^[^.]\+\.1000\./d' /input/file
[gray]# or in the given example may be just[/gray]
sed '/\.1000\./d' /input/file
sed '/^[red][^.][/red][^.][red]*[/red]\.1000\./d' /input/file
awk 'BEGIN{FS=OFS="."}[red]$2!=1000{[/red]print}' /path/to/input