8 lines
70 B
Bash
8 lines
70 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
env >> /etc/environment
|
||
|
|
||
|
# execute CMD
|
||
|
echo "$@"
|
||
|
exec "$@"
|