Last active
December 13, 2015 22:49
-
-
Save jbohren/4987294 to your computer and use it in GitHub Desktop.
Revisions
-
jbohren revised this gist
Feb 19, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ #!/usr/bin/env bash # Set the workspace to the current directory alias wspwd='export ROS_WORKSPACE=$(pwd)' -
jbohren revised this gist
Feb 19, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,5 +4,5 @@ alias wspwd='export ROS_WORKSPACE=$(pwd)' # Save the workspace used in this shell as the current workspace alias wssave='echo -e "$ROS_WORKSPACE" > ~/.curws' # Load the saved workspace into this shell alias wsload='source $(cat ~/.curws)/setup.bash' -
jbohren revised this gist
Feb 19, 2013 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ # Set the workspace to the current directory alias wspwd='export ROS_WORKSPACE=$(pwd)' # Save the workspace used in this shell as the current workspace alias wssave='echo -e "$ROS_WORKSPACE" > ~/.curws' # Load the saved ros workspace into this shell alias wsload='source $(cat ~/.curws)/setup.bash' -
jbohren revised this gist
Feb 19, 2013 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,8 @@ # Set the ros workspace to the current directory alias wspwd='export ROS_WORKSPACE=$(pwd)' # Save the current directory as the current ros workspace alias wssave='echo -e "$ROS_WORKSPACE" > ~/.curws' # Load the saved ros workspace alias wsload='source $(cat ~/.curws)/setup.bash' -
jbohren renamed this gist
Feb 19, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jbohren created this gist
Feb 19, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ alias wspwd='export ROS_WORKSPACE=$(pwd)' alias wssave='echo -e "$(pwd)" > ~/.curws' alias wsload='source $(cat ~/.curws)/setup.bash'