This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# This script will export MASTER URI and HOST IP for ROS | |
# Input argument 1: MASTER IP | |
# Input argument 2: PORT number | |
# HOST IP is automatically setup from ifconfig | |
# If MASTER IP is not supplied HOST_IP will be assigned | |
MASTER_IP_SUPPLIED=true | |
IP_MASTER='localhost' | |
ROS_PORT='11311' |