#!/bin/bash

for dir in `ls`

do

  if [ -d $dir ]

    then

        find  -type f

        break

  fi

done