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 脚本的新手。 我想将目录“/site”中的所有html文件复制到目录“/checkout/target/site” 我为每个文件编写了一行复制代码,但名称不断变化,所以我想写一些东西基本上复制以 .html 结尾的任何内容 哦,并且文件可能存在于目标中,因此覆盖会好得多。 谢谢
如果它只是在目录中/site(而不是子目录),这使得它:
/site
cp /site/*html /checkout/target/site/