#!/bin/sh 
# Recusively list files, and sort output
# fpc RunCommand does not support the | operator

# Copyright : 2023 P Blackman
# License   : BSD-2-clause



/usr/bin/find $1 -type f | sort
