Monday, April 26

A directory contains the following files:

a.txt
b.txt
c.cav

What would be the output of the following shell script?

for file in *.txt
do
echo $file
done

A. *.txt
B. a b
C. c.cav
D. a.txt
E. a. txt b. txt


No comments:

Post a Comment