mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
19 lines
234 B
Bash
Executable File
19 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ue_id="$1" # UE id
|
|
duration="$2" # Sim duration
|
|
|
|
shift
|
|
shift
|
|
|
|
function end
|
|
{
|
|
exit 0
|
|
}
|
|
trap end INT TERM
|
|
|
|
echo "ip netns exec $ue_id $@ > /tmp/test_${ue_id}.log"
|
|
ip netns exec $ue_id $@ > /tmp/test_$ue_id.log
|
|
|
|
|