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.
我有一个包含许多子目录的目录,每个子目录都有几个文件。
但我只需要一些子目录(和包含的文件)。我有一个我需要移动的子目录名称的列表。
如何根据 bash shell 中的列表将所需的子目录移动到目标目录?
谢谢
假设你的意思是所有子目录都移动到一个目标目录,这样的事情应该为你做
cat subdirlist | xargs -i mv {} targetdir