#!/bin/sh
_find() { find "$@" -type f -perm /u+s,g+s -ls; }

if [ $# -gt 0 ]; then
	_find "$@"
else
	_find /{,usr/}{bin,sbin,lib}
fi
