Comandos
Comandos Úteis
Descobrir Charset do arquivo
1 2 | #!/bin/bash file -i [nome-arquivo] |
Descobrir pid do processo
1 2 3 4 | #!/bin/bash pidof [nome-processo] # ou ps aux | grep [nome-processo] |
1 2 | #!/bin/bash file -i [nome-arquivo] |
1 2 3 4 | #!/bin/bash pidof [nome-processo] # ou ps aux | grep [nome-processo] |