21 lines
365 B
Bash
Executable File
Vendored
21 lines
365 B
Bash
Executable File
Vendored
#!/bin/bash
|
|
|
|
#
|
|
# This file is a part of UERANSIM project.
|
|
# Copyright (c) 2023 ALİ GÜNGÖR.
|
|
#
|
|
# The software and all associated files are licensed under GPL-3.0
|
|
# and subject to the terms and conditions defined in LICENSE file.
|
|
#
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "No IP address supplied"
|
|
exit
|
|
fi
|
|
|
|
addr=$1
|
|
shift
|
|
|
|
LD_PRELOAD=./libdevbnd.so UE_BIND_ADDR=$addr $@
|