我想将文件从挂载目录复制到我的主目录。我的 /mnt
/mnt# ls
'01 - Course Overview' '03 - Locating Elements & Navigating Dynamic Web Pages' '05 - Overcoming Challenges and Increasing Efficiency'
'02 - Exploring Selenium with Python' '04 - Loading Selenium Page Source into BeautifulSoup' 'Exercise Files'
rsync 行应该是什么样的?
答案1
怎么样:
rsync -r /mnt/ $HOME/
这应该会将 /mnt 的内容复制到 $HOME。不过,您可能应该选择 $HOME 目录中的一个子文件夹。