5 lines
94 B
Bash
5 lines
94 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo "$@"
|
|
|
|
exec "$@" # Runs the command passed to the entrypoint script.
|