10 lines
128 B
Bash
Executable File
10 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
export ENV='/etc/adb_profile'
|
|
if [ $1 = '-' ];then
|
|
/bin/sh
|
|
elif [ $1 = '-c' ];then
|
|
/bin/sh -c "$2"
|
|
else
|
|
/bin/sh
|
|
fi
|