stat – display file or file system status
GNU Command stat -f / $stat -f / File: “/” ID: bc427fdafb7b0541 Namelen: 255 Type: ext2/ext3 Block size: 4096 Fundamental block size: 4096 Blocks: Total: 18864769 Free: 16209639 Available: 15251363 Inodes: Total: 4792320 Free: 4684854 $ Explanation Display file or file system status. Related Source Code Exposition static bool do_statfs (char const *filename, bool terse, char const *format) { STRUCT_STATVFS statfsbuf; if (STATFS (filename, &statfsbuf) != 0) { error (0, errno, _(“cannot read file system information for %s”), quote (filename)); …