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

7 lines
135 B
Plaintext
Executable File

function load_OpenBSD_FS_data
{
df -k | tail +2 | egrep -v "/mnt/cdrom"\
| awk '{print $1, $2, $4, $5, $6}' > $WORKFILE
}