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