aboutsummaryrefslogtreecommitdiff
path: root/.local/share/bin/pause
blob: 8eedbfb905e283a610f98d7d5ee11004e8e79f79 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
ec=0
if [ $# -ge 1 ] ; then
	"$@"
	ec=$?
fi
printf "Press enter to exit..."
read
exit $ec