mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 17:24:51 +02:00
7 lines
103 B
Bash
7 lines
103 B
Bash
|
#!/bin/sh
|
||
|
# run docker startup, first arg is new PATH, remainder is command
|
||
|
|
||
|
PATH="$1"
|
||
|
shift
|
||
|
exec "$@"
|