June 18, 2017
6:59 a.m.
Why not just use OsProcess or OsSubprocess to run the unix commands (works on Mac OS and Linux)? Sent from my iPhone
On Jun 17, 2017, at 19:59, Hernán Morales Durand <hernan.morales@gmail.com> wrote:
I would like to find files in Pharo like the UNIX find command:
find . -iname "*.txt" -type f -print
find . \( -iname "*.txt" -o -iname "*.csv" \) -print
find . -maxdepth 2 -name "example*" -type f -print
find . -type f -atime -7 -size +2M -perm 644 -print
Do we have some package on top of FileSystem to make complex find searches?
Hernán