5 lines
74 B
Bash
Executable File
5 lines
74 B
Bash
Executable File
#!/bin/bash
|
|
|
|
used=$(df -h / | awk 'NR==2 {print $3 "/" $2}')
|
|
echo "$used"
|