The Data ONTAP CLI is a command language interpreter that
executes commands from the Data ONTAP console. You can
access the console with a physical connection, through
telnet, or through the Remote LAN Manager (RLM). The commands
can also be executed using rsh and ssh protocols.
You can concatenate commands together on the same line by
separating the commands with semi-colons, (;).
Quoting
The quoting rules in the Data ONTAP CLI are
unusual. There is no escape character like the
backslash; however there are the following special
characters:
When special characters are part of a command argument,
the argument needs to be surrounded by quotes or the character
will be treated as a special character. A single
quote character needs to be surrounded by double quote
characters and a double quote character needs to be surrounded
by single quote characters. The other special
characters can be surrounded by either single or double
quotes.
The following examples show quote usage:
qtreecreate/vol/test_vol/'qtree1'
The qtree qtree1 is created.
qtreecreate/vol/test_vol/'qtree#1'
The qtree qtree#1 is created.
qtreecreate/vol/test_vol/"qtree'1"
The qtree qtree'1 is created.
qtreecreate/vol/test_vol/'hello"'"'"1
The qtree hello"'1 is created.
cifssharesaddjふxp/vol/test_vol/home
Creates a share with a Japanese character; whereas
cifssharesadd"jふxp"/vol/test_vol/home
Creates the share jふxp.
sysconfig;version
Executes the sysconfig and version commands.