11 lines
101 B
Bash
11 lines
101 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
SCRIPT_DIR=/regression
|
||
|
cd ${SCRIPT_DIR}
|
||
|
|
||
|
./shell_cmd.sh
|
||
|
./process.sh
|
||
|
./network.sh
|