Skip to content

Instantly share code, notes, and snippets.

@samuelecarpene
Created May 18, 2016 07:46
Show Gist options
  • Select an option

  • Save samuelecarpene/b1fb19272ce2e66f838345c117b5400e to your computer and use it in GitHub Desktop.

Select an option

Save samuelecarpene/b1fb19272ce2e66f838345c117b5400e to your computer and use it in GitHub Desktop.
Disk Space linux
//The du command is used in Linux to estimate and display the disk space used by files.
du -hs;
du -hs *;
//The df command reports the amount of available disk space being used by file systems.
df -h;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment