9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
|
#!/bin/bash
|
||
|
# Copyright (c) 2020 Linaro Limited
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
# report disk usage:
|
||
|
echo "--- $0 disk usage"
|
||
|
df -h
|