mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
7 lines
71 B
Bash
7 lines
71 B
Bash
#!/bin/bash
|
|
|
|
if [ $# -eq 0 ]; then
|
|
exec bash
|
|
else
|
|
exec "$@"
|
|
fi
|