9 lines
105 B
Bash
Executable File
9 lines
105 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "-s" ] || [ "$1" = "--shell" ]; then
|
|
shift
|
|
exec bash $@
|
|
fi
|
|
|
|
exec streamlit $@
|