
Refer to the exhibit. Which command is run from the Guest Shell to set the description on the first five interfaces of the Cisco Nexus switch?
A. [guestshell@guestshell ~]$ for x in {1..5}; dohost “conf t ; interface eth1/$x ; description Server$x”;
B. [guestshell@guestshell ~]$ for x in {1..5}; do dohost “conf t ; interface eth1/$x ; description Server$x”;
C. [guestshell@guestshell ~]$ for x in (1..5); do dohost “conf t”; “interface eth1/$x” ; “description Server$x”;
D. [guestshell@guestshell ~]$ for x in (1..5); dohost “conf t ; interface eth1/$x ; description Server$x”;
Correct Answer: A