6 lines
53 B
Bash
Executable file
6 lines
53 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
cmd="$1"; shift
|
|
exec $cmd "$@"
|
|
|