mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-04-06 10:47:49 +00:00
8 lines
143 B
Bash
Executable File
8 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# this script runs both executables and exits everything if one fails
|
|
./apiserver &
|
|
./passivetapper -i eth0 &
|
|
wait -n
|
|
pkill -P $$
|