mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
First of all, current behavior is not documented and confusing, and it can be very dangerous in the following sequence: find -L . -type l find -L . -type l -delete (the second line is even suggested by find(1)). Instead simply refuse to proceed when -L and -delete are both used. A descriptive error message is provided. The following command can be safely used to remove broken links: find -L . -type l -print0 | xargs rm -0 To do: update find(1) PR: bin/90687 Obtained from: Anatoli Klassen <anatoli@aksoft.net> Approved by: jhb (mentor) |
||
|---|---|---|
| .. | ||
| extern.h | ||
| find.1 | ||
| find.c | ||
| find.h | ||
| function.c | ||
| getdate.y | ||
| ls.c | ||
| main.c | ||
| Makefile | ||
| misc.c | ||
| operator.c | ||
| option.c | ||