You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran the script on MacOS, which uses BSD-derived versions of find, grep, and mktemp, and don't support the same command line options used in the code. I had to change three things to get it to run on a Mac.
Would it be possible to specifically state that this requires GNU tools — or alternatively, to change the code so uses only basic POSIX options?
FYI, here's are the three things I needed to manually change to get this to work on a Mac:
grep --perl-regexp
find -printf
mktemp --directory
The text was updated successfully, but these errors were encountered:
I ran the script on MacOS, which uses BSD-derived versions of find, grep, and mktemp, and don't support the same command line options used in the code. I had to change three things to get it to run on a Mac.
Would it be possible to specifically state that this requires GNU tools — or alternatively, to change the code so uses only basic POSIX options?
FYI, here's are the three things I needed to manually change to get this to work on a Mac:
grep --perl-regexp
find -printf
mktemp --directory
The text was updated successfully, but these errors were encountered: