11 lines
93 B
Bash
11 lines
93 B
Bash
#!/bin/sh
|
|
|
|
# Set verbose mode
|
|
set -x
|
|
|
|
# Stop executing after error
|
|
set -e
|
|
|
|
# Run command
|
|
$*
|