单项选择题
Given the following script, why does the output come out as an empty line instead of "dog"()#!/bin/ksh
$VAR=dog
echo "${VAR}"
A.The $VAR variable was not exported.
B.The $VAR should have been set as VAR.
C.dog needs double quotes around it when setting $VAR.
D.The { } should not be around VAR in the echo command.
相关考题
-
单项选择题
Whichofthefollowingcommandswouldanadministratorusetoaddstartupscriptstothesystemstartupprocess()
A.chitab
B.vi /etc/inittab
C.vi /etc/rc.d
D.mkitab -
单项选择题
Using splitvg to create a snapshot volume group of rootvg results in an error. What is the most likely cause of the error()
A.There is not an available disk to allocate to the snapshot volume group
B.One of the physical volumes associated with rootvg has a status of "missing"
C.Rootvg is running in enhanced concurrent mode
D.A snapshot volume group cannot be created for the rootvg -
单项选择题
The df command indicates that a filesystem is full, however, the du command indicates that not all space is allocated. How would the system administrator isolate the discrepancy()
A.Use the fuser command to identify deleted but open files.
B.Use the ipcs command to view orphan shared memory segments.
C.Use the defrag command to determine if the filesystem is fragmented.
D.Use the topas command to identify processes using the most system resources.
