blob: 5aa6db258c323e7b54df497ae0cacc0f02c60843 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
Minimalitic `find` using breadth first crawling.
The entire invocation syntax is:
bfind [--xdev] [--hardlinks] [--symlinks] \
[--visible] [--] DIRECTORY
With --xdev crawling will not be restricted to
one mount point.
With --hardlinks bfind will be hardlink aware
on directories.
With --symlinks bfind will visit directories
symlinks points, and directories will never
be revisited. Visited directories will be
memorised by absolute real path name.
With --visible not files starting with a dot
will be listed.
Short option alternatives:
-x --xdev
-h --hardlinks
-s --symlinks
-v --visible
Short options can be combined
Each link will always start with DIRECTORY.
|