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 ~/bin
directorio 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
leafpad
, un editor de texto, como esto:leafpad --tab-width=2
. ¿Su salida incluiría--tab-width=2
?leafpad
instalado en este momento, pero para algunas aplicaciones sí, también devolverá los argumentos.Desde aqui :
Si solo necesita la línea de comando de inicio, simplemente:
Después de ejecutar el comando, simplemente haga clic en la ventana para la que desea que se muestre el comando de inicio.
fuente
Un guión alternativo:
Uso:
Esto requiere que se instale xsel .
fuente
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).
fuente
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.
fuente
Otra forma de enumerar el nombre del comando y los argumentos de los procesos en ejecución es:
(Redirigir a un archivo para que los nombres / argumentos de los comandos no se trunquen).
Fuente:
man ps
sección de ejemplos (con una pequeña modificación).El monitor del sistema es una GUI para
ps
.fuente
grep
para encontrar el comando si tiene una idea vaga.