Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我可以使用xargs,但我在 eshell 中!必须有一种更巧妙的方式来做到这一点。假设我跑步
xargs
find . -name "*.suo"
对每个结果进行迭代的 eshell 方式是rm什么?我已经尝试过for,mapc但不是很擅长这些东西,但还不太清楚如何使用它们
rm
for
mapc
我不确定它是如何从 eshell 工作的,但也许 dired 更适合这份工作(?)
我会打开。在 dired 中,然后执行类似搜索“.suo”的操作,迭代结果,使用 m 标记文件,然后使用 x 删除。