Je viens de créer le script suivant qui utilise le titre de la fenêtre de l'application pour trouver la bonne commande qui ouvre l'application respective depuis le terminal (je l'ai nommée 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
Enregistrez ce script dans votre ~/bin
répertoire et n'oubliez pas de le rendre exécutable:
chmod +x ~/bin/appcmd
Usage:
Lorsque le script est exécuté sans aucun argument, le script renvoie toutes les commandes pour toutes les fenêtres ouvertes correspondantes.
Si un argument est donné, le script essaiera de trouver une fenêtre d'application ouverte contenant dans son titre cet argument et renverra la commande correspondante. Par exemple, si le navigateur Chromium est ouvert, vous pouvez trouver la commande qui l'ouvre depuis le terminal en utilisant uniquement:
appcmd chromium
leafpad
, un éditeur de texte, comme ceci:leafpad --tab-width=2
. Votre sortie inclurait-elle--tab-width=2
?leafpad
installé pour le moment, mais pour certaines applications, oui, je retournerai également les arguments.D' ici :
Si vous n'avez besoin que de la ligne de commande de démarrage, alors:
Après avoir exécuté la commande, cliquez simplement sur la fenêtre pour laquelle vous souhaitez afficher la commande de démarrage.
la source
Un script alternatif:
Usage:
Cela nécessite l' installation de xsel .
la source
Comme alternative sans avoir besoin d'un script, vous pouvez simplement ouvrir le Moniteur système et passer votre souris sur le processus dont vous souhaitez connaître la ligne de commande.
Si vous activez la "Vue des dépendances", vous pourrez voir quel processus en appelle un autre, par exemple, vous pouvez voir les différents processus que Chrome crée pour chaque onglet et remonter jusqu'au processus parent qui aura la ligne de commande avec lequel Chrome a été invoqué (par l'utilisateur).
la source
La pensée la plus similaire que j'ai trouvée est xwininfo, qui vous donne des informations sur une fenêtre en cours d'exécution. Mais cela ne vous dit pas quel programme s'exécute à l'intérieur.
la source
Une autre façon de répertorier le nom de la commande et les arguments des processus en cours d'exécution est la suivante:
(Redirigez vers un fichier afin que les noms / arguments de commande ne soient pas tronqués.)
Source::
man ps
section exemples (avec une petite modification).Le moniteur système est une interface graphique pour
ps
.la source
grep
pour trouver la commande si vous avez une vague idée.