Linux: Limpeza de diretórios e zerando arquivos: Difference between revisions
No edit summary |
|||
Line 36: | Line 36: | ||
[[Category:Tecnologias]] | [[Category:Tecnologias]] | ||
[[Category:Fedora]] | [[Category:Fedora]] | ||
[[Category:find]] |
Revision as of 13:06, 21 September 2016
Dica do amigo Rafael Vitalino
Esta pequena sequência de comandos faz a remoção de arquivos de logs e traces do IBM WebSphere Application Server, e pode ser usado em outros soluções bastando alterar o nome dos arquivos:
cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/logs/ find . | grep trace | xargs rm find . | grep txt | xargs rm find . | grep native | xargs -n1 cp /dev/null find . | grep SystemOut.log | xargs -n1 cp /dev/null find . | grep SystemErr.log | xargs -n1 cp /dev/null
Detalhando:
Altera para o diretório de logs do profile do WebSphere Application Server
cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/logs/
Removendo arquivos trace.log, trace_.log, <ARQUIVOS>.txt
find . | grep trace | xargs rm find . | grep txt | xargs rm
Zerando arquivos native_stdout.log, native_stderr.log, SystemOut.log e SystemErr.log
find . | grep native | xargs -n1 cp /dev/null find . | grep SystemOut.log | xargs -n1 cp /dev/null find . | grep SystemErr.log | xargs -n1 cp /dev/null