Recursively list contents of directory: find
(self, arg)
| 204 | |
| 205 | # ------------------------[ find <path> ]----------------------------- |
| 206 | def do_find(self, arg): |
| 207 | "Recursively list contents of directory: find <path>" |
| 208 | for name in self.dirlist(arg): |
| 209 | output().psfind(name) |
| 210 | |
| 211 | # ------------------------[ mirror <path> ]--------------------------- |
| 212 | def do_mirror(self, arg): |