About bash
I have given the cmd like this cd ~/fuerte_workspace/sandbox bash: cd: /home/abi/fuerte_workspace/sandbox: No such file or directory how can i recover this error always i'm getting error in my bash file
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
I have given the cmd like this cd ~/fuerte_workspace/sandbox bash: cd: /home/abi/fuerte_workspace/sandbox: No such file or directory how can i recover this error always i'm getting error in my bash file
That error results from a directory not being in existence. You can create it:
mkdir ~/fuerte_workspace/sandbox
If it exists, make sure you are in the right user account. Maybe update your post with the end of your ~/.bashrc file? It is highly unlikely that this error is the result of that file, however.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2013-01-04 07:37:45 -0500
Seen: 190 times
Last updated: Jan 04 '13
Melodic upgrade errors on Ubuntu 18.04.1 LTS
How to pass an argument to roslaunch file from shell script?
Catkin Problems on sourcing workspaces
How to use bash commands alongside Docker restart policies? [closed]
Environment set-up problems with bash (ros2_iron)
Use param for remapping in launch file
Get timestamp during roslaunch
How to source ROS Kinetic in Ubuntu Core via ssh?
How do I prevent roslaunch from changing the terminal screen title?
Have you modified your
~/.bashrc
file? If yes, can you please share your modifications?