請問要如何自動把資料夾容量作成一個網頁? - Linux

By Queena
at 2009-05-25T14:08
at 2009-05-25T14:08
Table of Contents
我想知道每個資料夾使用了多少空間,然後自動生成檔案可以看
我想到的方法是這樣的
把下面的寫成一個test.sh然後設crontab每天執行一次
#!/bin/bash
du -mh --max-depth=1 > test.txt
sed -i '$d' test.txt
sed -i 's/.\/aaa/小明的網站/g' test.txt
echo `date +%x` >> test.txt
現在問題是du產生的檔案會有幾百行,如
7.2M ./aaa
620K ./bbb
96K ./ccc
我要把這些變成
7.2M 小明的網站
620K 小華的網站
96K 小美的網站
就要sed幾百次,有沒有比較好的方式可以處理呢?
--
◢███◣
◤ ≡ ______________________________________
─⊙-⊙- / \
皿 _/ 把台灣那些可悲的節目收一收 該吃飯了 /
◣ ︶◢ \______________________________________/
--
我想到的方法是這樣的
把下面的寫成一個test.sh然後設crontab每天執行一次
#!/bin/bash
du -mh --max-depth=1 > test.txt
sed -i '$d' test.txt
sed -i 's/.\/aaa/小明的網站/g' test.txt
echo `date +%x` >> test.txt
現在問題是du產生的檔案會有幾百行,如
7.2M ./aaa
620K ./bbb
96K ./ccc
我要把這些變成
7.2M 小明的網站
620K 小華的網站
96K 小美的網站
就要sed幾百次,有沒有比較好的方式可以處理呢?
--
◢███◣
◤ ≡ ______________________________________
─⊙-⊙- / \
皿 _/ 把台灣那些可悲的節目收一收 該吃飯了 /
◣ ︶◢ \______________________________________/
--
Tags:
Linux
All Comments

By Frederic
at 2009-05-25T23:36
at 2009-05-25T23:36

By Olga
at 2009-05-27T13:19
at 2009-05-27T13:19
Related Posts
Mandriva 2009.1的一些小問題

By Andy
at 2009-05-25T13:49
at 2009-05-25T13:49
Re: ubuntu 9.04

By Elma
at 2009-05-25T11:33
at 2009-05-25T11:33
ubuntu 9.04

By Emily
at 2009-05-25T11:03
at 2009-05-25T11:03
VMWare安裝Linux-視窗問題

By Susan
at 2009-05-25T07:36
at 2009-05-25T07:36
預設網頁拒絕顯示

By Harry
at 2009-05-25T00:29
at 2009-05-25T00:29