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.
#!/bin/ksh
typeset -RZ6 KEY
while read RECORD
do
KEY=${RANDOM}
print "${KEY}:${RECORD}"
done < file.orig | sort -n | sed 's/^[0-9]*://1' > file.unsorted