有即時顯示剩餘空間的軟體嗎? - Linux
By Zenobia
at 2017-08-02T17:05
at 2017-08-02T17:05
Table of Contents
無聊隨手刻一個
#!/bin/bash
PBAR_W=50;
TMP_PATH='/tmp'
progress_bar(){
FILL=$[$PBAR_W*$USED/100]
printf "USED:[%${FILL}s"|tr ' ' '#'|tr -d '\n'
printf "%$[$PBAR_W - $FILL]s"|tr ' ' '.'|tr -d '\n'
echo "] ${USED}%"
}
while((1));do
USED=`df -h|grep " ${TMP_PATH}"|awk '{print $5}'|tr -d '%'`
progress_bar
sleep 1
done
--
#!/bin/bash
PBAR_W=50;
TMP_PATH='/tmp'
progress_bar(){
FILL=$[$PBAR_W*$USED/100]
printf "USED:[%${FILL}s"|tr ' ' '#'|tr -d '\n'
printf "%$[$PBAR_W - $FILL]s"|tr ' ' '.'|tr -d '\n'
echo "] ${USED}%"
}
while((1));do
USED=`df -h|grep " ${TMP_PATH}"|awk '{print $5}'|tr -d '%'`
progress_bar
sleep 1
done
--
Tags:
Linux
All Comments
By Tristan Cohan
at 2017-08-03T13:51
at 2017-08-03T13:51
By Mason
at 2017-08-05T08:03
at 2017-08-05T08:03
By Edward Lewis
at 2017-08-08T06:15
at 2017-08-08T06:15
By Todd Johnson
at 2017-08-11T23:22
at 2017-08-11T23:22
By Jack
at 2017-08-15T04:35
at 2017-08-15T04:35
By Hamiltion
at 2017-08-16T19:01
at 2017-08-16T19:01
By Lucy
at 2017-08-21T00:52
at 2017-08-21T00:52
By Audriana
at 2017-08-23T08:32
at 2017-08-23T08:32
By Quintina
at 2017-08-25T06:12
at 2017-08-25T06:12
Related Posts
求救, 尋求故障排除或資料庫救援
By Quanna
at 2017-08-02T16:20
at 2017-08-02T16:20
有即時顯示剩餘空間的軟體嗎?
By Ingrid
at 2017-08-02T12:56
at 2017-08-02T12:56
ubuntu 16.04 rtl8821ae
By Margaret
at 2017-08-01T18:46
at 2017-08-01T18:46
gnuplot畫數據圖 省略部分座標軸段
By Ivy
at 2017-08-01T16:08
at 2017-08-01T16:08
如何使用vim取代有特殊字元與空白的文字?
By Emma
at 2017-08-01T13:20
at 2017-08-01T13:20