4 lines
104 B
Text
4 lines
104 B
Text
|
#!/usr/bin/bash
|
||
|
|
||
|
df -h / | awk '{print substr($3, 1, length($3)-1) "/" $2}' | tail -n 1 | sed 's/G/GB/'
|