#! /bin/sh
# This script takes a list of paths as input.
# It prints a list of the sites encountered in the paths, sorted
# according to their frequency.
awk -F! '{ for (i = 1; i <= NF; i++) print $i }' $* |\
sort | uniq -c | sort -nr



