Explain the error messages displayed in the following sequence of commands:Explain the error messages displayed in the following sequence of commands:
$ ls -l
drwxrwxr-x. 2 max pubs 1024 03-02 17:57 dirtmp
$ ls dirtmp
$ rmdir dirtmp
rmdir: dirtmp: Directory not empty
$ rm dirtmp/*
rm: No match.
There is a file whose name begins with a period (a hidden file) in the dirtmp
directory. Use ls with the –a option to list the file. Remove the file, and then
you will be able to remove the directory.
You might also like to view...
What is the correct way to call the following function? _________________________
void setDisplay();
A local procedure is also known as a ____ procedure.
A. standard B. global C. public D. private
Which of the following is concerned with the analyst's time and the costs for system development, hardware, and business employee time?
A) economic feasibility B) operational feasibility C) tactical feasibility D) technical feasibility
Which of the following cannot cause a syntax error to be reported by the Java compiler?
a. Mismatched {} b. Missing */ in a comment that begins with /* c. Missing ; d. An extra blank line.