我在将包含该文件夹中文件的文件夹复制到另一个文件夹时遇到了一些问题。命令cp -r不会复制文件夹中的文件。
cp -r
您正在寻找的选项是-R.
-R
cp -R path_to_source path_to_destination/
destination
copy directories recursively
-r
要复制源文件夹中的 所有内容 (符号链接、隐藏文件)而不复制源文件夹 本身, 请使用-a标志以及源中的尾随/.(根据@muni764‘s / @Anton Krug‘s comment):
-a
/.
@muni764
@Anton Krug
cp -a path_to_source/. path_to_destination/