rsync -avを使用するにはどうすればよいですか ただし、ドットアンダースコア(._example.txt)で始まるすべてのファイルを除外します )また、.DS_Storeも無視します ファイル?
承認された回答:
--exclude="<filePattern>"を試すことができます
rsync -av --exclude="._*" --exclude=".DS_Store" <source> <destination>
rsync -avを使用するにはどうすればよいですか ただし、ドットアンダースコア(._example.txt)で始まるすべてのファイルを除外します )また、.DS_Storeも無視します ファイル?
--exclude="<filePattern>"を試すことができます
rsync -av --exclude="._*" --exclude=".DS_Store" <source> <destination>