mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-10-23 08:18:43 +00:00
8 lines
248 B
Bash
Executable File
8 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# this script runs both executables and exits everything if one fails
|
|
./apiserver -hardir /tmp/mizuhars &
|
|
./passivetapper -i any -hardump -hardir /tmp/mizuhars -harentriesperfile 50 -targets "${TAPPED_ADDRESSES}" &
|
|
wait -n
|
|
pkill -P $$
|