70.6k views
2 votes
What command would you use to display the disk usage in human readable format of a directory named test3. Assume this directory is right under your home directory and you are executing this command from your home directory.

1 Answer

6 votes

Step-by-step explanation:

if we use the above command with -h then this will show the result in human readable format.

df -h

Ex: df -h test3 (The command as asked in the question)

So the above command is showing the disk status in Gigabyte format.

Try the same command in your system. If directory test 3 is not present then create a new one with mkdir command.

User Deependra Singh
by
4.8k points