Files
2024-02-19 00:21:16 -05:00

15 lines
347 B
Bash
Executable File

#!/bin/sh
# This script belongs in a public bin directory which should
# be on peoples path. It is used by xdtm.
#
# Execute a program, but don't terminate script until a
# return.
# For use within an xterm to stop output being missed.
#
echo "Running" $1 "in this window"
$*
echo "======= Press <Return> to close the window ======="
read test