Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save petergi/fc14561a98b6f8041c51784d7bff61df to your computer and use it in GitHub Desktop.
Save petergi/fc14561a98b6f8041c51784d7bff61df to your computer and use it in GitHub Desktop.
#!/bin/bash
disk=$(df -Hl | head -2 | tail -1)
dpercent=$(echo "$disk" | awk '{print $5}')
dfree=$(echo "$disk" | awk '{print $4}')
dused=$(echo "$disk" | awk '{print $3}')
dcapacity=$(echo "$disk" | awk '{print $2}')
echo "$disk"
echo "$dpercent"
echo "$dfree"
echo "$dused"
echo "$dcapacity"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment