mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 21:31:02 -05:00
-anewer
-cnewer
-mnewer
-okdir
-newer[acm][acmt]
With it, you can form queries like
find . -newerct '1 minute ago' -print
As an extra bonus, the program is ANSI-fied - the original version
relies on some obscure features of K&R C.
(This PR was submitted in 1999, and the submittor has kept the patch
updated ever since, hats off for him guys, and how about you close a PR ??)
PR: 9374
Submitted by: Martin Birgmeier <Martin.Birgmeier@aon.at>
11 lines
309 B
Makefile
11 lines
309 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
CFLAGS+= -Wall
|
|
PROG= find
|
|
SRCS= find.c function.c ls.c main.c misc.c operator.c option.c getdate.y
|
|
CLEANFILES+= getdate.c y.tab.h
|
|
CFLAGS+= -I${.CURDIR}/../../gnu/usr.bin/cvs/lib -DHAVE_CONFIG_H
|
|
.PATH: ${.CURDIR}/../../contrib/cvs/lib
|
|
|
|
.include <bsd.prog.mk>
|