Megatest

Diff
Login

Differences From Artifact [7cf892b486]:

To Artifact [40d98efdc8]:


1
2

3
4
5

6
7
8
9
10
11
12
#!/bin/bash


if [ -e megatest.sh ];then
  source megatest.sh
fi


if [ x"$MT_XTERM_CMD" == "x" ];then
  exec xterm "$@"
else
  exec $MT_XTERM_CMD
fi



>



>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

MT_TMPDISPLAY=$DISPLAY
if [ -e megatest.sh ];then
  source megatest.sh
fi
export DISPLAY=$MT_TMPDISPLAY

if [ x"$MT_XTERM_CMD" == "x" ];then
  exec xterm "$@"
else
  exec $MT_XTERM_CMD
fi