Added df -h command (#19821)

* Added df -h command

* fix typo
pull/30776/head
tattoodgeek 2018-10-27 21:45:25 -05:00 committed by Martin Payne
parent e653eab3f5
commit cbc44d80d9
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ When starting out with linux, there are some basic commands everyone should know
14. **cp** - copy files and directories
- Use 'cp' to copy a file or a direcotry with files inside it to another location using command 'cp CURRENT_FILE-LOCATION DESTINATION_FOLDER'. Add '-r' flag to copy a directory that is not empty.
15. **df -h** Checks disk space in human readable form
- Shows the size, amount used, amount available and capacity percentage of mounted drives/partitions.
### Useful Resources for Practice:
- [JSLinux](https://bellard.org/jslinux/vm.html?url=https://bellard.org/jslinux/buildroot-x86.cfg): Run the terminal inside your browser. Great for practice.
- [LearnShell](https://www.learnshell.org/): Interactive Linux shell (terminal) tutorials.