lazarus/tools/RunAndWait.sh
2002-08-18 08:55:43 +00:00

13 lines
159 B
Bash

#!/bin/bash
CommandLine=$@
#set -x
echo $CommandLine
$CommandLine
echo "--------------------------------------------------"
echo "Press return"
read
# end.