diff options
-rw-r--r-- | README.md | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -79,29 +79,29 @@ On the other hand, `bfs` lists files from shallowest to deepest, so you never ha <td width="506" valign="top"> ```console -$ find haystack +$ bfs haystack haystack haystack/deep -haystack/deep/1 -haystack/deep/1/2 -haystack/deep/1/2/3 -haystack/deep/1/2/3/4 -... haystack/shallow +haystack/deep/1 haystack/shallow/needle +... ``` </td> <td width="506" valign="top"> ```console -$ bfs haystack +$ find haystack haystack haystack/deep -haystack/shallow haystack/deep/1 -haystack/shallow/needle +haystack/deep/1/2 +haystack/deep/1/2/3 +haystack/deep/1/2/3/4 ... +haystack/shallow +haystack/shallow/needle ``` </td> |