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.
sed 's/^0\+//;/^$/d' /input/file
[gray]# or[/gray]
awk '$0{print $0+0}' /input/file
sed '1,/^[^0]/{s/^0\+//;/^$/d}' /input/file
[gray]# or[/gray]
awk 'NR==1,!/^0/{if($0)print $0+0;next}1' /input/file
[red]#[/red]!/bin/ksh
typeset -i x
while read x
do
[red]test $x -gt 0 &&[/red] echo $x
done < in.file > out.file