#!/bin/sh # # owners # Paul Jungwirth # Shows all the user/group combinations of the files # in the given directory tree. find "$1" -ls | sed 's/ */ /g' | cut -d' ' -f 5-6 | sort -u