Files
oficial/cli/entrypoint
2025-07-15 19:06:07 -04:00

15 lines
201 B
Bash
Executable File

#!/bin/bash
if [[ $# -gt 0 ]]
then
if [[ "$1" = "bash" || "$1" = "sh" || "$1" = "zsh" || "$1" = "/bin/bash" ]]
then
CMD=$1
shift
$CMD -c "$@"
exit
fi
fi
/code/bin/incoviba "$@"