lazarus/tools/runwait.sh
mattias b79a1e5a86 fixed run and wait script
git-svn-id: trunk@2900 -
2002-08-18 08:55:46 +00:00

13 lines
158 B
Bash

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