-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
verbs: renaming path verb to find verb
- Loading branch information
Showing
2 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
``catkin find`` -- Find Workspace Locations | ||
=========================================== | ||
|
||
The ``find`` verb can be used to find important locations in the workspace such as | ||
the active ``source``, ``build``, ``devel``, and ``install`` spaces, and package | ||
source directories in the workspace. | ||
|
||
Full Command-Line Interface | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. code-block:: text | ||
usage: catkin find [-h] [--workspace WORKSPACE] [--profile PROFILE] | ||
[--root | --space {src,build,devel,install} | --pkg PACKAGE] | ||
Get the paths to important locations in a workspace. | ||
optional arguments: | ||
-h, --help show this help message and exit | ||
--workspace WORKSPACE, -w WORKSPACE | ||
The path to the catkin_tools workspace or a directory | ||
contained within it (default: ".") | ||
--profile PROFILE The name of a config profile to use (default: active | ||
profile) | ||
Paths: | ||
Get the absolute path to one of the following locations in the given | ||
workspace with the given profile. | ||
--root, -r The workspace root. (default) | ||
--space {src,build,devel,install}, -s {src,build,devel,install} | ||
One of the active workspace sub-spaces. | ||
--pkg PACKAGE, -p PACKAGE | ||
Get the path to a source package in the workspace. |