📌  相关文章
📜  bash 复制所有隐藏文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:50.258000             🧑  作者: Mango

代码示例1
# Basic syntax:
rsync -a /directory/with/hidden/files/.[^.]* /destination/directory/

# Example usage:
# Say you wanted to copy all hidden directories from your home folder:
rsync -a ~/.[^.]* /path/to/destination/directory