I'd like to use the find function from the turtle package such that it matches any file path (in order to get an equivalent behavior to find .
in bash). However I cannot find a wildcard pattern that I can use with this function.
find :: Pattern a -> FilePath -> Shell FilePath
I guess I could construct a pattern that matches any character zero or more times, but I'd like to avoid re-inventing the wheel.