列出 DOS 和 Unix 中的文件夹和子文件夹?
我必须列出 DOS 和 Unix 中给定目录的文件夹和子文件夹。我知道我可以使用 DIR 命令来实现此目的,如下所示:dir directory /ad /s
,但分配告诉我必须使用 find 来实现。它适用于 dir,但我不知道如何使用 find 来实现它。我也必须在 UNIX 中制作它,所以如果您有任何提示或其他信息,请告诉我。
谢谢。
I have to list folders and sub-folders from a given directory in DOS and Unix. I know i cand make this with DIR command, as follows: dir directory /ad /s
, but the assignment tells me that I have to make it with find. It works with dir, but i have no idea how to make it with find. And I have to make it in UNIX too, so if you have some hints or something, please let me know.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 原生
find
命令用于查找文件或标准输入中的字符串,而不是列出文件名。下载 findutils Windows 版,然后你就可以使用find
相同的功能就像你在 UnixWindowsS 中使用的那样:
Unix:
Windows native
find
command is for finding strings in files or stdin, not for listing file names. download findutils for windows, then you can usefind
the same as what you used in UnixWindowS:
Unix: