Codificação de arquivos / proc / pid / cmdline

2

Estou pensando em trabalhar com os arquivos /proc/<pid>/cmdline , mas não consegui encontrar nenhuma documentação sobre a codificação do arquivo. A única informação que pude encontrar está localizada na página man:

 /proc/[pid]/cmdline
    This holds the complete command line for the process, unless the process is a zombie.  In the  latter
    case, there is nothing in this file: that is, a read on this file will return 0 characters.  The com‐
    mand-line arguments appear in this file as a set of strings separated by null bytes  ('
 /proc/[pid]/cmdline
    This holds the complete command line for the process, unless the process is a zombie.  In the  latter
    case, there is nothing in this file: that is, a read on this file will return 0 characters.  The com‐
    mand-line arguments appear in this file as a set of strings separated by null bytes  ('%pre%'),  with  a
    further null byte after the last string.
'), with a further null byte after the last string.

Qual é a codificação do arquivo cmdline?

    
por BenR 29.01.2016 / 09:27

1 resposta

3

The command-line arguments appear in this file as a set of strings separated by null bytes ('%bl0ck_qu0te%'), with a further null byte after the last string.

É tudo que você precisa. Você tem o comando e seus argumentos separados por byte nulo locale . A codificação dos caracteres é baseada no %code% , mas não deve importar.

Você tem algum exemplo específico em que precisa de ajuda?

    
por 29.01.2016 / 09:33