7 lines
129 B
Bash
7 lines
129 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# activate the environment
|
||
|
source activate eos-s3
|
||
|
|
||
|
# exec the cmd/command in this process, making it pid 1
|
||
|
exec "$@"
|