Give a command for viewing the size of your home directory?Give a command for displaying the sizes of all the files in your home directory
What will be an ideal response?
• Execute the ls -ld ~ or ls -ld $HOME or ls -ld $home command and look at the file size field to determine the size of your home directory.
• Execute the wc ~/* or wc $HOME/* or wc $home/* command to display the size of all the files in your home directory
Computer Science & Information Technology
You might also like to view...
Which of the following is NOT a standard for wireless fidelity Ethernet networks?
A) 802.11ab B) 802.11g C) 802.11ac D) 802.11n
Computer Science & Information Technology
What would the function cube return, assuming it is called with the line cube(3).
``` function cube( y ); { return y * y * y; } ``` a) JavaScript runtime error b) 3 c) 9 d) 27
Computer Science & Information Technology