#!/bin/sh -e for u in $(find users -type d -mindepth 1) ; do printf "%s\t%s\n" "`cat $u/email`" "`cat $u/name`" done | fzf