Como podemos obter a linha de comando de um aplicativo em execução?

16

No Ubuntu, as aplicações podem ser abertas a partir de um terminal. Mas às vezes não está claro qual é o comando apropriado para fazer isso.

Então, tendo um aplicativo aberto, como posso obter o comando usado para iniciá-lo, sem ter que procurar em qualquer lugar (apenas olhando para ele)?

    
por Radu Rădeanu 19.09.2013 / 16:13

6 respostas

13

Acabei de fazer o seguinte script que usa o título da janela do aplicativo para descobrir o comando correto que abre o respectivo aplicativo do terminal (eu o denominei appcmd ):

#!/bin/bash

#appcmd - script which use the application window title to find out the right command which opens the respective application from terminal

#Licensed under the standard MIT license:
#Copyright 2013 Radu Rădeanu (http://askubuntu.com/users/147044/).
#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE

#check if wmctrl is installed
if [ ! -n "$(dpkg -s wmctrl 2>/dev/null | grep 'Status: install ok installed')" ]; then
    echo -e "The package 'wmctrl' must to be installed before to run $(basename $0).\nUse 'sudo apt-get install wmctrl' command to install it."
    exit
fi

window_title=$(echo $@ | awk '{print tolower($0)}')
windows=$(mktemp)
pids=$(mktemp)
pid_found=""

wmctrl -l | awk '{$2=$3=""; print $0}' > $windows

cat $windows | while read identity window; do
    if [[ $(echo $window | awk '{print tolower($0)}') == *$window_title* ]]; then
        wmctrl -lp | grep -e "$identity.*$window" | awk '{$1=$2=$4=""; print $0}'
    fi
done > $pids

while read pid window; do
    if [ "$pid" != "0" -a "$window" != "Desktop" ]; then
        echo -e "Application window title:\t$window"
        echo -e "Command to open from terminal:\t\$ $(ps -o command $pid | tail -n 1)\n"
        pid_found="$pid"
    fi
done < $pids

if [ "$pid_found" = "" ]; then
    echo "There is no any opened application containing '$@' in the window title."
fi

Salve este script no diretório ~/bin e não se esqueça de torná-lo executável:

chmod +x ~/bin/appcmd

Uso:

  • Quando o script é executado sem nenhum argumento, o script retornará todos os comandos para todas as janelas abertas correspondentes.

  • Se algum argumento for fornecido, o script tentará encontrar uma janela de aplicativo aberta contendo em seu título esse argumento e retornará o comando correspondente. Por exemplo, se o navegador Chromium estiver aberto, você poderá descobrir o comando que o abre do terminal usando apenas:

    appcmd chromium
    
por Radu Rădeanu 19.09.2013 / 16:43
12

De aqui :

xprop | awk '($1=="_NET_WM_PID(CARDINAL)") {print $3}' | xargs ps h -o pid,cmd

Se você precisar apenas da linha de comando inicial, simplesmente:

xprop | awk '($1=="_NET_WM_PID(CARDINAL)") {print $3}' | xargs ps h -o cmd

Depois de executar o comando, basta clicar na janela para a qual você deseja que o comando inicial seja exibido.

    
por falconer 14.01.2014 / 00:22
6

Um script alternativo:

#!/bin/bash

# Copyright © 2013  minerz029
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

shopt -s extglob

for var in 'wm_pid' 'wm_name' 'wm_class' 'cmdline' 'wm_id'; do
    declare "$var"'=Not found'
done

notify-send -t 3000 'Click on a window to get the command line...'
xprop_out="$(xprop)"

while IFS=$'\n' read -r -d $'\n' line; do
    if [[ "$line" == '_NET_WM_PID(CARDINAL) = '* ]]; then
        wm_pid="${line#_NET_WM_PID(CARDINAL) = }"
    elif [[ "$line" == 'WM_NAME('?(UTF8_)'STRING) = '* ]]; then
        wm_name="${line#WM_NAME(?(UTF8_)STRING) = }"
    elif [[ "$line" == 'WM_CLASS('?(UTF8_)'STRING) = '* ]]; then
        wm_class="${line#WM_CLASS(?(UTF8_)STRING) = }"
    elif [[ "$line" == 'WM_CLIENT_LEADER(WINDOW): window id # '* ]]; then
        wm_id="${line#WM_CLIENT_LEADER(WINDOW): window id # }"
    fi
done <<< "$xprop_out"

if [[ "$wm_pid" == +([0-9]) ]]; then
    quote () 
    { 
        local quoted="${1//\'/\'\\'\'}";
        out="$(printf "'%s'" "$quoted")"
        if eval echo -n "$out" >/dev/null 2>&1; then
            echo "$out"
        else
            echo "SEVERE QUOTING ERROR"
            echo "IN: $1"
            echo -n "OUT: "
            eval echo -n "$out"
        fi
    }
    cmdline=()
    while IFS= read -d '' -r arg; do
        cmdline+=("$(quote "$arg")")
    done < "/proc/$wm_pid/cmdline"
fi

text="\
Title:
    $wm_name
Class:
    $wm_class
ID:
    $wm_id
PID:
    $wm_pid

Command line:
    ${cmdline[@]}"

copy() {
    { echo -n "$1" | xsel -i -b >/dev/null; } && xsel -k
}

if [[ -t 1 ]]; then
    echo "$text"
    if [[ "$1" == '--copy' ]]; then
        echo "Copied"
        copy "$cmdline"
    fi
else
    zenity \
        --title='Window information' \
        --width=750 \
        --height=300 \
        --no-wrap \
        --font='Ubuntu Mono 11' \
        --text-info \
        --cancel-label='Copy' \
        --ok-label='Close' \
    <<< "$text"
    if [[ $? == 1 ]]; then
        copy "$cmdline"
    fi
fi

Uso:

  1. Salve o script acima em um arquivo e torne-o executável.
  2. Execute o arquivo clicando duas vezes e selecionando "Executar".
  3. Clique na janela em que você gostaria de saber o comando.
  4. As informações serão exibidas para você. (Título, PID, ID, classe e linha de comando)
  5. Você pode clicar no botão "Copiar" para copiar a linha de comando para a área de transferência.
    Isso requer que o xsel estejainstalado.

    
por kiri 14.01.2014 / 03:26
4

Como uma alternativa sem precisar de um script, você pode simplesmente abrir o Monitor do Sistema e passar o mouse sobre o processo que gostaria de conhecer na linha de comando.

Se você ativar a "Visualização de dependências", poderá ver qual processo chamou outro, por exemplo, é possível ver os vários processos que o Chrome cria para cada guia e rastreá-los de volta ao processo pai, que terá a linha de comando na qual o Chrome foi invocado (pelo usuário).

    
por kiri 27.10.2013 / 06:48
1

O pensamento mais semelhante que encontrei é o xwininfo, que fornece informações sobre uma janela de execução. Mas isso não diz qual programa está sendo executado dentro dele.

    
por animaletdesequia 14.01.2014 / 00:18
0

Outra maneira de listar o nome do comando e os argumentos dos processos em execução é:

ps axk pid,comm o comm,args > output.txt

(Redirecionar para um arquivo para que os nomes / argumentos dos comandos não sejam truncados).

Fonte: man ps : seção de exemplos (com uma pequena modificação).

O monitor do sistema é uma GUI para ps .

    
por chaskes 27.10.2013 / 08:20