forked from Ar-Ray-code/setup_ros_env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.bash
45 lines (37 loc) · 1.33 KB
/
setup.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
cd `dirname $0`
cp ./ros1_init.bash ~/.ros1_init.bash
cp ./ros2_init.bash ~/.ros2_init.bash
echo "if ! test -z \"\$ROS_DISTRO\"; then" >> ~/.bashrc
echo "export PS1=\"(\$ROS_DISTRO):\[\033[01;34m\]\w\[\033[00m\]\$ \"" >> ~/.bashrc
echo "fi" >> ~/.bashrc
## ROS1-Distro --------------------------------------------------------
read -p "Enter ros1-distro or enter a blank (e.g. noetic) : " ros1_distro
if test -z $ros1_distro;then
echo "skip setting"
else
echo $ros1_distro
fi
## ROS1-WS --------------------------------------------------------
read -p "Enter ros1_workspace or enter a blank (e.g. ~/ros1_ws) : " ros1_workspace
if test -z $ros1_workspace;then
echo "skip setting"
else
echo $ros1_workspace
echo "alias ros1_init=\"source ~/.ros1_init.bash $ros1_workspace $ros1_distro\"" >> ~/.bashrc
fi
## ROS2-Distro --------------------------------------------------------
read -p "Enter ros2-distro or enter a blank (e.g. foxy) : " ros2_distro
if test -z $ros2_distro;then
echo "skip setting"
else
echo $ros2_distro
fi
## ROS2-WS --------------------------------------------------------
read -p "Enter ros2_workspace or enter a blank (e.g. ~/ros2_ws) : " ros2_workspace
if test -z $ros2_workspace;then
echo "skip setting"
else
echo $ros2_workspace
echo "alias ros2_init=\"source ~/.ros2_init.bash $ros2_workspace $ros2_distro\"" >> ~/.bashrc
fi