ref: 416e728ea8ea985c6f179ce90296e000cae3a65d
parent: e1f691c77ba5aec66369aad41f0cd0d03236b959
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Jul 27 23:06:46 EDT 2025
unix2plan9: du -> walk we have walk now
--- a/unix2plan9.md
+++ b/unix2plan9.md
@@ -168,12 +168,12 @@
<td><code>whois $user</code></td>
</tr><tr>
<td rowspan=2><code>find</code></td>
- <td>By name: <code>du -a | grep pattern</code> and <code>grep pattern `{du -a root}</code></td>
+ <td>By name: <code>walk | grep pattern</code> and <code>grep pattern `{walk -f root}</code></td>
</tr><tr>
- <td>By content pattern: <code>grep -n pattern `{du -a root | awk '{print $2}'}</code></td>
+ <td>By content pattern: <code>grep -n pattern `{walk -f}</code></td>
</tr><tr>
<td><code>find -exec cp '{}' x ';'</code></td>
- <td><code>cp `{ du -a | grep pattern } x</code></td>
+ <td><code>cp `{ walk | grep pattern } x</code></td>
</tr><tr>
<td><code>cut</code></td>
<td><code>awk -F …</code></td>
--
⑨