#!/bin/sh
# execute a command and pause afterwards
command="$*; echo 'Press <return> to continue'"
eval $command
read x
