-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
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
find: Add -readable, -writable & -executable options #1080
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a few nits i noticed on a first read thru
559a2af
to
106863f
Compare
@@ -28,7 +28,9 @@ | |||
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |||
.\" SUCH DAMAGE. | |||
.\" | |||
.Dd January 15, 2024 | |||
.\" @(#)find.1 8.7 (Berkeley) 5/9/95 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mis-merge with changes in main to remove old SCCS IDs?
@bsdimp The style violations from the checker are false positives. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 (with @bsdjhb's complaint addressed)
Merged in e4b646c, thanks! |
Reviewed by: jhb, Mina Galić Pull Request: #1080
Reviewed by: jhb, Mina Galić Pull Request: freebsd/freebsd-src#1080
Add -readable, -writable & -executable options for GNU find compatibility. These functions use access() to test for readable/writable/executable access by the current user.
References: