Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,20 +94,20 @@ runs:
echo ""
}

# macro to print output of dh with caption
# macro to print output of df with caption
printDH() {
caption=${1:-}

printSeparationLine '=' 80
echo "${caption}"
echo ""
echo "$ dh -h /"
echo "$ df -h /"
echo ""
df -h /
echo "$ dh -a /"
echo "$ df -a /"
echo ""
df -a /
echo "$ dh -a"
echo "$ df -a"
echo ""
df -a
printSeparationLine '=' 80
Expand Down