summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts
Side-by-side diff
Diffstat (limited to 'noncore/tools/opie-sh/scripts') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/diskfree.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/tools/opie-sh/scripts/diskfree.sh b/noncore/tools/opie-sh/scripts/diskfree.sh
index 6fcd709..78415e3 100755
--- a/noncore/tools/opie-sh/scripts/diskfree.sh
+++ b/noncore/tools/opie-sh/scripts/diskfree.sh
@@ -17,25 +17,25 @@
# 20020524-5 - bugfix
# 20020524-1 - initial release
OPIE_SH=/opt/QtPalmtop/bin/opie-sh
# there must be a better way to do this with sed, but i had no time
# time to look into this yet...
( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/fsmounter.png>"
echo "<h3>diskfree</h3> how much space is left ?<br>"
echo "<p><table>"
- df -Ph \
+ df -h \
| grep -v "Mounted on" \
| sed 's/ / /g' \
| sed 's/ / /g' \
| sed 's/ / /g' \
| sed 's/ / /g' \
| sed 's/ / /g' \
| sed 's/ / /g' \
| sed "s/ / /g" \
| cut -d " " -f4- \
| sed 's/ /<\/td><td>/g' \
| sed 's/$/<\/td><\/tr>/' \
| sed 's/^/<tr><td>/' ; echo "</table>" \