#!/bin/bash for directory in "$@" do find "$directory" -type f -print0 | recent --stdin --count 1 done