#!/bin/sh

printf '%s\n' "$PATH" \
	| tr : "\n" \
	| sort \
	| uniq \
	| parallel walk -n \
	| sed 's:.*\/::' \
	| sort \
	| uniq
