Files
mastering-unix-ss/chapter23/function_get_fs_stats
Fabio Scotto di Santolo 4cc88d2f6e initial commit
2020-07-28 19:28:25 +02:00

13 lines
103 B
Plaintext
Executable File

get_fs_stats ()
{
# Save the file system statistics
df -k
echo "\n"
mount
echo "\n"
lsfs
echo "\n"
}