问题:
Given the following scripts, what output would be generated()
usr/local/bin/scriptl
#!/usr/bin/ksh
VARl=red
export VARl=green
VARl=blue
/usr/local/bin/script2
ARl=yellow
/usr/local/bin/script2
#!/bin/ksh
echo "The sky is ${VAR1}."
A . The sky is red.
B . The sky is blue.
C . The sky is green.
D . The sky is yellow.
Given the following scripts, what output would be generated()
usr/local/bin/scriptl
#!/usr/bin/ksh
VARl=red
export VARl=green
VARl=blue
/usr/local/bin/script2
ARl=yellow
/usr/local/bin/script2
#!/bin/ksh
echo "The sky is ${VAR1}."
● 参考解析
本题暂无解析
相关内容
相关标签