Audio (340) Datatype (50) Demo (203) Development (592) Document (22) Driver (100) Emulation (146) Game (984) Graphics (491) Library (112) Network (230) Office (65) Utility (907) Video (68)
Total files: 4310
Full index file Recent index file
Amigans.net OpenAmiga Aminet IntuitionBase
|
find | Description: | GNU find 4.1.20 (from findutils) | Download: | gnufind.lha (TIPS: Use the right click menu if your browser takes you back here all the time) | Size: | 170kb | Version: | 4.1.20 | Date: | 11 Nov 2014 | Author: | Free Software Foundation | Submitter: | Michael Trebilcock | Category: | development/utility | Replaces: | development/utility/gnufind.lha | License: | GPL | Distribute: | yes | Min OS Version: | 4.0 | FileID: | 9049 | | | Comments: | 1 | Snapshots: | 0 | Videos: | 0 | Downloads: | 156 (Current version) | | 239 (Accumulated) | Votes: | 0 (0/0) (30 days/7 days) | |
A dodgy port of "find" from an old version of findutils. Don't expect much.
Built with clib2.
On some rare occasions, the "find" utility is used by configure scripts or
Makefiles. It can be put in SDK:local/C
"fork" and "wait" code is simply commented out, therefore some functionality is
lost.
---
Changes: Added xargs. It can help in some cases.
An example inside of "sh" (abc-shell):
find *.c -print0 | xargs -0 grep -Hni "hello"
Will show all .c files containing the string "hello" (case insensitive),
including the filename and line number.
|