Go to: Synopsis. Flags. Return value. MEL examples.
help [-documentation] [-language string] [-list] [-popupDisplayTime int] [-popupMode int] [-popupPauseTime int] [-rolloverMode int]
[name/pattern]
help is undoable, queryable, and editable.
With no arguments, help tells you how to use help. If a command
name is specified, help will give you quick help for that command.
Other flags can be used to open the online documentation, or to list
available commands based on a pattern.
Pattern follows the following syntax:
* matches any string
? matches any character
[agj] matches a, g or j
[^0-9] matches anything but a digit
x+ matches any number of subsequent x
a{3} matches aaa
a{3,} matches aaa, aaaa, ...
a{3,5} matches aaa, aaaa, or aaaaa
(ab)(CD)\2\1 matches abCDCDab (\1 to \9 available)
documentation, language, list, popupDisplayTime, popupMode, popupPauseTime, rolloverMode
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can be used more than once in a command
|
nothing
help -list "[a-c]*"; // List all commands starting with a, b or c
help -list "[^aeiou]+"; // List all commands without vowels!
help; // Print a message explaining how to use help
help -doc; // Bring up the main on-line help index
help -language "python" -doc polySphere; // Bring up the Python version of command documentation for the polySphere command
help -doc disable; // Bring up the on-line help for the disable command.
Return to Autodesk Index