wc command cannot take multiple filenames as arguments.

wc command cannot take multiple filenames as arguments. Correct Answer False

wc command can take multiple filenames as arguments. If multiple filenames are specified with wc command then it will produce a separate line of output for each file along with an additional line as a total count for all files specified. For example, $ wc file01 file02 file03 12 45 170 file01 8 34 145 file02 10 38 158 file03 30 117 403 total

Related Questions