5 lines
139 B
Text
Executable file
5 lines
139 B
Text
Executable file
#!/usr/bin/env nu
|
|
|
|
def main [] {
|
|
btrfs file df / | lines | first | split column -r '\s' | get column4 | str replace 'used=' '' | first
|
|
}
|