Shell实现统计文件列表的文件大小并累加
#!/bin/sh sum=0 lineCount=0 homeDir="/home/imagemedia/ytsp/videoGSX/" tempDir="" tempResult="" while read -r line do tempDir=${line#*//} tempDir=${tempDir#*/} tempDir=$homeDir$tempDir tempResult=$(du -sh $tempDir) size=${tempResult%M*} let lineCount++ sum=`echo "$size + $sum"|bc` echo $size done<"/home/imagemedia/ytsp/log2.txt" echo "$lineCount rows" echo -n "$sum M" echo
执行方式:bashxxx.sh
相关推荐
laisean 2020-11-11
Julyth 2020-10-16
laisean 2020-09-27
flycappuccino 2020-09-27
liguojia 2020-09-27
87201442 2020-10-15
MXstudying 2020-09-05
WasteLand 2020-09-15
<?php. if (!empty($_POST)) {. $data1 = $_POST["data1"];$data2 = $_POST["data2"];$fuhao = $_POST["fuh
mathchao 2020-09-15
tvk 2020-07-30
Zaratustra 2020-07-29
zhaowj00 2020-07-26
Zaratustra 2020-06-26
ldcwang 2020-06-25
拿什么来拯救自己 2020-06-21
IsanaYashiro 2020-06-16
赵家小少爷 2020-06-14
大牛牛 2020-06-14