Você pode encontrar e excluir todas as node_modules
pastas do caminho atual, por exemplo, no seu diretório home ( ~
), assim:
$ find 'pwd' -maxdepth 3 -type d -name 'node_modules' | xargs -n 1 tmutil addexclusion
Parabéns ao @peterdemartini: link
Observe que as pastas excluídas não aparecerão nas Preferências do Sistema do Time Machine ou ao executar este comando:
$ defaults read /Library/Preferences/com.apple.TimeMachine.plist SkipPaths
When you use this command (
tmutil addexclusion
), the item you exclude remains in the Time Machine exclusion list even if you move it, which is not the case when you exclude items from the Time Machine preference pane. If you use the above command with the -p flag, then it will not be sticky and will be the same as an exclusion you add from the Time Machine preference pane.https://www.macworld.com/article/2033804/control-time-machine-from-the-command-line.html