/usr/share/gps/plug-ins/shell.py is in gnat-gps-common 5.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | """This plug-in will spawn a Unix/Windows shell console in your GPS.
The shell that is spawned is read from your environment variables
SHELL or COMSPEC. When the latter is used, the terminal will not
do special handling for ANSI escape sequences (the ones used to color
text, move the cursor to specific locations,...).
However, when a Unix-like shell is spawned (ie when SHELL is set), the
terminal is fully capable of handling these escape sequences. In
particular, you can also run commands like "vi" in the terminal.
This terminal behaves a lot like a standard Unix terminal. In particular,
you need to make sure that your shell will output all the information.
In some cases, the configuration of your shell (.bashrc if you are
running bash for instance) will deactivate the echo of what you type to
the terminal. Since GPS is not outputing anything on its own, just showing
what the shell is outputing, you need to somehow ensure that your shell
always echos what you type. This is done by running the command
stty echo
in such cases. In general, this can be safely done in your .bashrc
"""
import GPS, re, traceback, os
from gps_utils.console_process import *
class Unix_Shell (ANSI_Console_Process):
def __init__ (self, process, args=""):
oldterm = os.environ["TERM"]
os.environ["TERM"] = "xterm"
ANSI_Console_Process.__init__ (self, process, args)
os.environ["TERM"] = oldterm
class Win32_Shell (Console_Process):
def __init__ (self, process, args=""):
Console_Process.__init__ (self, process, args)
def create_default_shell (menu):
"""Spawns the user's shell as read from the environment variable SHELL"""
if os.getenv ("SHELL") and os.getenv ("TERM"):
Unix_Shell (os.getenv ("SHELL"), "-i")
elif os.getenv ("COMSPEC"):
Win32_Shell (os.getenv ("COMSPEC"), "/Q")
GPS.Menu.create ("/Tools/Consoles/_OS Shell", create_default_shell, ref="Auxiliary Builds", add_before=1)
|