Ir para o conteúdo
ou

Software livre Brasil

 Voltar a CommandLineFu
Tela cheia Sugerir um artigo

Optimal way of deleting huge numbers of files

7 de Junho de 2016, 16:56 , por Commands with 10 up-votes - 0sem comentários ainda | Ninguém está seguindo este artigo ainda.
Visualizado 226 vezes
$ rsync -a --delete empty-dir/ target-dir/

This command works by rsyncing the target directory (containing the files you want to delete) with an empty directory. The '--delete' switch instructs rsync to remove files that are not present in the source directory. Since there are no files there, all the files will be deleted.

I'm not clear on why it's faster than 'find -delete', but it is.

Benchmarks here: https://web.archive.org/web/20130929001850/http://linuxnote.net/jianingy/en/linux/a-fast-way-to-remove-huge-number-of-files.html

commandlinefu.com

Diff your entire server config at ScriptRock.com


Fonte: http://www.commandlinefu.com/commands/view/17371/optimal-way-of-deleting-huge-numbers-of-files

0sem comentários ainda

Enviar um comentário

Os campos são obrigatórios.

Se você é um usuário registrado, pode se identificar e ser reconhecido automaticamente.