We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, just tried with macOS 10.15.4. If you install coreutils such as brew install coreutils then you'll have gprintf, gdate and greadlink...
coreutils
brew install coreutils
gprintf
gdate
greadlink
printf
-printf
readlink
-prinf
find
-print
example about -prinf replacements...
# you'll see few more done < <(find $REPOSITORY_ROOT -path "$target_path/*.md" ! -empty -printf "%f\n" | sort -r)
should be:
done < <(find $REPOSITORY_ROOT -path "$target_path/*.md" ! -empty -print | sort -r)
macOS' find command doesn't support printf.
Well, maybe this information will help :) Big fan of goto here :)
goto
The text was updated successfully, but these errors were encountered:
Hi @vigo!!!
I will deal with this as we already did in this pull request for the gdate issue!
Well, maybe this information will help
It surely did! Thank you very much for your feedback 🚀 🚀 🚀
Big fan of goto here
🙏
Sorry, something went wrong.
No branches or pull requests
Hi, just tried with macOS 10.15.4. If you install
coreutils
such asbrew install coreutils
then you'll havegprintf
,gdate
andgreadlink
...printf
withgprintf
but do not replace-printf
readlink
withgreadlink
-prinf
which used infind
command, replace with-print
example about
-prinf
replacements...should be:
macOS' find command doesn't support printf.
Well, maybe this information will help :) Big fan of
goto
here :)The text was updated successfully, but these errors were encountered: