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 'h;s/././g;G;s/\n/\t/' /input/file | sort | sed 's/.*\t//'
[gray]# or[/gray]
awk '{$0=$0"\t"length($0)}1' /input/file | sort -t$'\t' -k2 -n | awk '{NF--}1'
[gray]# or[/gray]
perl -ne '$l[$.]=$_;END{print sort{length $a<=>length $b}@l}' /input/file