mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-09-26 21:01:15 +08:00
15 lines
273 B
Bash
15 lines
273 B
Bash
#!/usr/bin/env bash
|
|
|
|
#############################################
|
|
## Root shell
|
|
#############################################
|
|
|
|
if [ "$#" -eq 1 ]; then
|
|
## No command, fall back to interactive shell
|
|
exec bash
|
|
else
|
|
## Exec root command
|
|
shift
|
|
exec "$@"
|
|
fi
|