Login
Remember
Register
Ask a Question
What, if anything, is wrong with each of the following commands?
+1
vote
asked
May 11, 2021
in
Linux
by
rajeshsharma
What, if anything, is wrong with each of the following commands?
a) ls -l-s
b) cat file1, file2
c) ls - s Factdir
#linux
commands
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 11, 2021
by
rajeshsharma
a) there should be space between the 2 options: ls -l -s
b) do not use commas to separate arguments: cat file1 file2
c) there should be no space between hyphen and option label: ls –s Factdir
...