4 lines
68 B
Bash
4 lines
68 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
df -h / | awk '/\//{ printf(" %4s / %s \n", $4, $2) }'
|