#!/bin/sh 
# Recusively list files, and sort output.
# fpc RunCommand does not support the | operator.
# the $1 needs to remain unquoted.

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

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