Enviado em 28/04/2016 - 08:48h
Olá,Enviado em 28/04/2016 - 09:14h
Acredito q vc poderá usar o find pra isso (ou o locate). Se tiver mais d uma ocorrência, estará duplicada. Ex.:find / -iname "listas.odt"
Enviado em 28/04/2016 - 09:20h
Nunca usei programa pra isso. Porem uma pesquisa rápida me retornou um link que pode lhe ajudar.find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20 > arquivos_duplicados.txt
Enviado em 28/04/2016 - 09:54h
find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20 > arquivos_duplicados.txt
Enviado em 28/04/2016 - 10:18h
Enviado em 28/04/2016 - 10:30h
Obrigado pelas ajudas,Enviado em 28/04/2016 - 10:57h
Quando você executar a linha de comandofind . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20 > arquivos_duplicados.txt
Enviado em 28/04/2016 - 11:48h
find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20 > arquivos_duplicados.txt
Enviado em 29/04/2016 - 08:55h
Enviado em 29/04/2016 - 11:55h
find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20 > arquivos_duplicados.txt
Enviado em 29/04/2016 - 11:58h
Dê uma lida no artigo do edps: https://www.vivaolinux.com.br/artigo/Arquivos-duplicados-fdupes-neles/Enviado em 13/08/2017 - 05:07h
Olá a todos,find . -type f -exec md5sum '{}' ';' | sort | uniq --all-repeated=separate -w 20 > arquivos_duplicados.txt
-type f = regular files, imagino que sejam todos os ficheiros comuns -exec md5sum '{}' ';' = o comando find permite como parâmetro a execução de um programa, neste caso o md5sum. Pelo que percebi, lendo o manual do find, ele vai apenas extrair os resultados que tenham ponto e vírgula no final?!!? Esta parte não percebi. "This variant of the -exec action runs the specified command on the selected files, but the command line is built by appending each selected file name at the end; the total number of invoca‐ tions of the command will be much less than the number of matched files. The command line is built in much the same way that xargs builds its command lines. Only one instance of `{}' is allowed within the command, and (when find is being invoked from a shell) it should be quoted (for example, '{}') to protect it from interpretation by shells. The command is executed in the starting directory. If any invocation returns a non-zero value as exit status, then find returns a non-zero exit status. If find encounters an error, this can sometimes cause an immedi‐ ate exit, so some pending commands may not be run at all. This variant of -exec always returns true."
uniq --all-repeated=separate -w 20
Como gerar qualquer emoji ou símbolo unicode a partir do seu teclado
Instalar e Configurar o Slackware Linux em 2025
Como configurar os repositórios do apt no Debian 12 em 2025
Passkeys: A Evolução da Autenticação Digital
Instalação de distro Linux em computadores, netbooks, etc, em rede com o Clonezilla
Como dividir duas janelas igualmente e lado-a-lado na sua tela
Configurando o Conky para iniciar corretamente no sistema
3 configurações básicas que podem melhorar muito a sua edição pelo editor nano
Ocomon 6.0.1 - Problemas ao editar configurações estendidas (1)
MOVER ARQUIVO ENTRE PARTIÇOES (3)