¿Cómo podemos obtener la línea de comando de una aplicación en ejecución?

16

En Ubuntu, las aplicaciones se pueden abrir desde una terminal. Pero a veces no está claro cuál es el comando apropiado para hacer esto.

Entonces, al tener una aplicación abierta, ¿cómo puedo usar el comando para iniciarla, sin tener que buscar en ningún lado (solo con mirarla)?

Radu Rădeanu
fuente

Respuestas:

13

Acabo de hacer el siguiente script que usa el título de la ventana de la aplicación para encontrar el comando correcto que abre la aplicación respectiva desde la terminal (lo nombré 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

Guarde este script en su ~/bindirectorio y no olvide hacerlo ejecutable:

chmod +x ~/bin/appcmd

Uso:

  • Cuando el script se ejecuta sin ningún argumento, el script devolverá todos los comandos para todas las ventanas abiertas correspondientes.

  • Si se proporciona algún argumento, el script intentará encontrar una ventana de aplicación abierta que contenga en su título ese argumento y devolverá el comando correspondiente. Por ejemplo, si el navegador Chromium está abierto, puede encontrar el comando que lo abre desde la terminal usando solo:

    appcmd chromium
    
Radu Rădeanu
fuente
@ RaduRădeanu: trabajando muy bien .. :) RaduRădeanu , eres increíble .. !!
Saurav Kumar
No he probado su script, pero ¿devuelve los interruptores que también se usan? Por ejemplo, pongo en marcha leafpad, un editor de texto, como esto: leafpad --tab-width=2. ¿Su salida incluiría --tab-width=2?
@ vesa1 Bueno, puedes probarlo. No lo he leafpadinstalado en este momento, pero para algunas aplicaciones sí, también devolverá los argumentos.
Radu Rădeanu
12

Desde aqui :

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

Si solo necesita la línea de comando de inicio, simplemente:

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

Después de ejecutar el comando, simplemente haga clic en la ventana para la que desea que se muestre el comando de inicio.

halconero
fuente
¡Gracias! Nunca lo habría descubierto por mi cuenta.
ksoo
1
Sería bueno si esto se incluyera como salida de xwininfo ...
virtualxtc
@ RaduRădeanu Luego use su touchpad. :) En realidad, mi respuesta fue migrada de esta pregunta duplicada que pedía explícitamente un método de clic.
cetrero
6

Un guión 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. Guarde el script anterior en un archivo y hágalo ejecutable.
  2. Ejecute el archivo haciendo doble clic y seleccionando "Ejecutar".
  3. Haga clic en la ventana de la que desea conocer el comando.
  4. Se le mostrará información. (Título, PID, ID, clase y línea de comando)
  5. Puede hacer clic en el botón "Copiar" para copiar la línea de comando al portapapeles.
    Esto requiere que se instale xselInstalar xsel .

ingrese la descripción de la imagen aquí

kiri
fuente
1
Muy buena ejecución de scripting de shell. +1 de mi parte
souravc
4

Como alternativa sin necesidad de un script, simplemente puede abrir el Monitor del sistema y colocar el mouse sobre el proceso del que desea conocer la línea de comando.

Si habilita la "Vista de dependencias", podrá ver qué proceso se llama otro, por ejemplo, puede ver los diversos procesos que Chrome crea para cada pestaña y rastrearlo hasta el proceso principal que tendrá la línea de comando con qué Chrome fue invocado (por el usuario).

kiri
fuente
Esto no funcionará todo el tiempo. Un ejemplo rápido es el administrador de archivos predeterminado de Ubuntu - Nautilus.
Radu Rădeanu
@ RaduRădeanu Por supuesto, no obtiene el comando del nombre alternativo (Archivos) de nautilus, pero si solo desea una forma simple de obtener los argumentos, esto funcionará bien. Todavía puedes reconocer el ícono
kiri
1

El pensamiento más similar que he encontrado es xwininfo, que le brinda información sobre una ventana en ejecución. Pero no te dice qué programa se está ejecutando dentro de él.

animaletdesequia
fuente
0

Otra forma de enumerar el nombre del comando y los argumentos de los procesos en ejecución es:

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

(Redirigir a un archivo para que los nombres / argumentos de los comandos no se trunquen).

Fuente: man pssección de ejemplos (con una pequeña modificación).

El monitor del sistema es una GUI para ps.

chaskes
fuente
Siempre puede usar greppara encontrar el comando si tiene una idea vaga.
kiri