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.
我了解如何复制隐藏文件夹:
cp ./[^.]stringmatch /destination
我了解如何复制非隐藏文件夹
cp *stringmatch /desination
但是如何复制具有特定字符串匹配的隐藏和非隐藏文件?
试试cp {.,}*stringmatch* /destination...希望有帮助!
cp {.,}*stringmatch* /destination