1.复制
https://qastack.cn/superuser/61611/how-to-copy-with-cp-to-include-hidden-files-and-hidden-directories-and-their-contents
cp -r /etc/skel/* /home/user
以上代码可以实现目录的复制,但是不会复制隐藏文件 .文件名 类型的。
mkdir /home/<new_user>
cp -r /etc/skel/. /home/<new_user>
直接用 点.来表示即可。
2.覆盖文件
https://blog.csdn.net/xinluke/article/details/52229431
\cp xxx yyy