5 lines
83 B
Bash
Executable File
5 lines
83 B
Bash
Executable File
#!/bin/sh
|
|
echo "Starting application..."
|
|
# Add your startup command here
|
|
exec "$@"
|