
Enviado em 02/07/2018 - 21:14h
Em este tópico: https://www.vivaolinux.com.br/topico/Iniciantes-no-Linux/Aplicar-recursividade-no-comando
find teste/ -type f -iname "*.pdf" -print0 | xargs -0 -P8 -n1 detox -n
$ find teste -type d -print0 | xargs detox -n
xargs: WARNING: a NUL character occurred in the input. It cannot be passed through in the argument list. Did you mean to use the --null option?
teste/sdfdsá -> teste/sdfdsa
$ find teste -type d -print0 | xargs -0 detox -n
teste/sdfdsá -> teste/sdfdsa
teste/sdfdsá -> teste/sdfdsa
teste/sdfdsá/LCé.pdf -> teste/sdfdsá/LCe.pdf
$ find teste -type d -print0 | xargs -0 -P8 -n1 detox -n
teste/sdfdsá -> teste/sdfdsa
teste/sdfdsá -> teste/sdfdsa
teste/sdfdsá/LCé.pdf -> teste/sdfdsá/LCe.pdf
Como atualizar sua versão estável do Debian
Cirurgia para acelerar o openSUSE em HD externo via USB
Void Server como Domain Control
Quer auto-organizar janelas (tiling) no seu Linux? Veja como no Plasma 6 e no Gnome
Copiando caminho atual do terminal direto para o clipboard do teclado
Script de montagem de chroot automatica









