author | drw <drw> | 2003-01-30 00:16:21 (UTC) |
---|---|---|
committer | drw <drw> | 2003-01-30 00:16:21 (UTC) |
commit | 937c6c3e9c61b332fc3ba173b7395e8fb5d1741e (patch) (unidiff) | |
tree | 51a436bc303291963579c4d4cfb18ba13c989000 | |
parent | a885dd31b7d2ba6befb4d2d88f545940a24de82c (diff) | |
download | opie-937c6c3e9c61b332fc3ba173b7395e8fb5d1741e.zip opie-937c6c3e9c61b332fc3ba173b7395e8fb5d1741e.tar.gz opie-937c6c3e9c61b332fc3ba173b7395e8fb5d1741e.tar.bz2 |
Fix for bug #617
-rwxr-xr-x | noncore/tools/opie-sh/scripts/diskfree.sh | 2 |
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 | |||
@@ -13,32 +13,32 @@ | |||
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | # GNU General Public License for more details. | 15 | # GNU General Public License for more details. |
16 | # | 16 | # |
17 | # 20020524-5 - bugfix | 17 | # 20020524-5 - bugfix |
18 | # 20020524-1 - initial release | 18 | # 20020524-1 - initial release |
19 | 19 | ||
20 | OPIE_SH=/opt/QtPalmtop/bin/opie-sh | 20 | OPIE_SH=/opt/QtPalmtop/bin/opie-sh |
21 | 21 | ||
22 | # there must be a better way to do this with sed, but i had no time | 22 | # there must be a better way to do this with sed, but i had no time |
23 | # time to look into this yet... | 23 | # time to look into this yet... |
24 | 24 | ||
25 | ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/fsmounter.png>" | 25 | ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/fsmounter.png>" |
26 | echo "<h3>diskfree</h3> how much space is left ?<br>" | 26 | echo "<h3>diskfree</h3> how much space is left ?<br>" |
27 | echo "<p><table>" | 27 | echo "<p><table>" |
28 | 28 | ||
29 | df -Ph \ | 29 | df -h \ |
30 | | grep -v "Mounted on" \ | 30 | | grep -v "Mounted on" \ |
31 | | sed 's/ / /g' \ | 31 | | sed 's/ / /g' \ |
32 | | sed 's/ / /g' \ | 32 | | sed 's/ / /g' \ |
33 | | sed 's/ / /g' \ | 33 | | sed 's/ / /g' \ |
34 | | sed 's/ / /g' \ | 34 | | sed 's/ / /g' \ |
35 | | sed 's/ / /g' \ | 35 | | sed 's/ / /g' \ |
36 | | sed 's/ / /g' \ | 36 | | sed 's/ / /g' \ |
37 | | sed "s/ / /g" \ | 37 | | sed "s/ / /g" \ |
38 | | cut -d " " -f4- \ | 38 | | cut -d " " -f4- \ |
39 | | sed 's/ /<\/td><td>/g' \ | 39 | | sed 's/ /<\/td><td>/g' \ |
40 | | sed 's/$/<\/td><\/tr>/' \ | 40 | | sed 's/$/<\/td><\/tr>/' \ |
41 | | sed 's/^/<tr><td>/' ; echo "</table>" \ | 41 | | sed 's/^/<tr><td>/' ; echo "</table>" \ |
42 | ) | $OPIE_SH -t "Space left" -f | 42 | ) | $OPIE_SH -t "Space left" -f |
43 | 43 | ||
44 | rm -f /tmp/qcop-msg-diskfree.sh | 44 | rm -f /tmp/qcop-msg-diskfree.sh |