给定files.txt中的文件列表,我可以得到它们的大小列表,如下所示:

cat files.txt | xargs ls -l | cut -c 23-30

这会产生这样的结果:

  151552
  319488
 1536000
  225280

我怎样才能得到所有这些数字的总数呢?


我会用“du”来代替。

$ cat files.txt | xargs du -c | tail -1
4480    total

如果你只想要数字:

cat files.txt | xargs du -c | tail -1 | awk '{print $1}'

这里是

cat files.txt | xargs ls -l | cut -c 23-30 | 
  awk '{total = total + $1}END{print total}'

管呆了:

 cat files.txt | xargs ls -l | cut -c 23-30 | gawk 'BEGIN { sum = 0 } // { sum = sum + $0 } END { print sum }'

如果你只想使用shell脚本而不使用awk或其他解释器,你可以使用下面的脚本:

#!/bin/bash

total=0

for number in `cat files.txt | xargs ls -l | cut -c 23-30`; do
   let total=$total+$number
done

echo $total

这里是我的

cat files.txt | xargs ls -l | cut -c 23-30 | sed -e :a -e '$!N;s/\n/+/;ta' | bc

打印ksh:

echo " 0 $(ls -l $(<files.txt) | awk '{print $5}' | tr '\n' '+') 0" | bc

而不是使用cut从ls -l的输出中获取文件大小,你可以直接使用:

$ cat files.txt | xargs ls -l | awk '{total += $5} END {print "Total:", total, "bytes"}'

Awk将“$5”解释为第五列。这是ls -l中的列,它提供了文件大小。


#
#       @(#) addup.sh 1.0 90/07/19
#
#       Copyright (C) <heh> SjB, 1990
#       Adds up a column (default=last) of numbers in a file.
#       95/05/16 updated to allow (999) negative style numbers.


case $1 in

-[0-9])

        COLUMN=`echo $1 | tr -d -`

        shift

;;

*)

        COLUMN="NF"

;;

esac

echo "Adding up column .. $COLUMN .. of file(s) .. $*"

nawk  ' OFMT="%.2f"                                       # 1 "%12.2f"

        { x = '$COLUMN'                                   # 2

          neg = index($x, "$")                            # 3

          if (neg > 0) X = gsub("\\$", "", $x)

          neg = index($x, ",")                            # 4

          if (neg > 1) X = gsub(",", "", $x)

          neg = index($x, "(")                            # 8 neg (123 & change

          if (neg > 0) X = gsub("\\(", "", $x)

          if (neg > 0) $x = (-1 * $x)                     # it to "-123.00"

          neg = index($x, "-")                            # 5

          if (neg > 1) $x = (-1 * $x)                     # 6

          t += $x                                         # 7

          print "x is <<<", $x+0, ">>> running balance:", t

        } ' $*


# 1.  set numeric format to eliminate rounding errors
# 1.1 had to reset numeric format from 12.2f to .2f 95/05/16
#     when a computed number is assigned to a variable ( $x = (-1 * $x) )
#     it causes $x to use the OFMT so -1.23 = "________-1.23" vs "-1.23"
#     and that causes my #5 (negative check) to not work correctly because
#     the index returns a number >1 and to the neg neg than becomes a positive
#     this only occurs if the number happened to b a "(" neg number
# 2.  find the field we want to add up (comes from the shell or defaults
#     to the last field "NF") in the file
# 3.  check for a dollar sign ($) in the number - if there get rid of it
#     so we may add it correctly - $12 $1$2 $1$2$ $$1$$2$$ all = 12
# 4.  check for a comma (,) in the number - if there get rid of it so we
#     may add it correctly - 1,2 12, 1,,2 1,,2,, all = 12   (,12=0)
# 5.  check for negative numbers
# 6.  if x is a negative number in the form 999- "make" it a recognized
#     number like -999 - if x is a negative number like -999 already
#     the test fails (y is not >1) and this "true" negative is not made
#     positive
# 7.  accumulate the total
# 8.  if x is a negative number in the form (999) "make it a recognized
#     number like -999
# * Note that a (-9) (neg neg number) returns a postive
# * Mite not work rite with all forms of all numbers using $-,+. etc. *

如果文件名中有空格,Cat将不起作用。下面是一个perl单行程序。

perl -nle 'chomp; $x+=(stat($_))[7]; END{print $x}' files.txt

TMTWWTDI: Perl有一个文件大小操作符(-s)

perl -lne '$t+=-s;END{print $t}' files.txt

我喜欢使用....

echo "
1
2
3 " | sed -e 's,$, + p,g' | dc 

它们会显示每一行的和…

适用于这种情况:

ls -ld $(< file.txt) | awk '{print $5}' | sed -e 's,$, + p,g' | dc 

Total是最后一个值…


python3 -c"import os; print(sum(os.path.getsize(f) for f in open('files.txt').read().split()))"

或者,如果你只是想把这些数字加起来,可以输入:

python3 -c"import sys; print(sum(int(x) for x in sys.stdin))"

... | paste -sd+ - | bc

是我找到的最短的一个(来自UNIX命令行博客)。

编辑:增加了-参数的可移植性,谢谢@Dogbert和@Owen。


当你有统计时,整个ls -l然后cut是相当令人费解的。它也容易受到ls -l的确切格式的影响(直到我改变了cut的列号才起作用)。

此外,固定无用的使用猫。

<files.txt xargs stat -c %s | paste -sd+ - | bc

如果您没有安装BC,请尝试

echo $(( $(... | paste -sd+ -) ))

而不是

... | paste -sd+ - | bc

$() <——返回执行命令的值

$((1+2)) <——返回求值结果

Echo <——将它回显到屏幕


在我看来,最简单的解决方案是"expr" unix命令:

s=0; 
for i in `cat files.txt | xargs ls -l | cut -c 23-30`
do
   s=`expr $s + $i`
done
echo $s

纯bash

total=0; for i in $(cat files.txt | xargs ls -l | cut -c 23-30); do 
total=$(( $total + $i )); done; echo $total

sizes=( $(cat files.txt | xargs ls -l | cut -c 23-30) )
total=$(( $(IFS="+"; echo "${sizes[*]}") ))

或者你可以一边看大小一边把它们加起来

declare -i total=0
while read x; total+=x; done < <( cat files.txt | xargs ls -l | cut -c 23-30 )

如果你不关心咬的大小和块是可以的,那么

declare -i total=0
while read s junk; total+=s; done < <( cat files.txt | xargs ls -s )

cat files.txt | awk '{ total += $1} END {print total}'

您可以使用awk来做同样的事情,它甚至会跳过非整数

$ cat files.txt
1
2.3
3.4
ew
1

$ cat files.txt | awk '{ total += $1} END {print total}'
7.7

或者您可以使用ls命令并计算人类可读的输出

$ ls -l | awk '{ sum += $5} END  {hum[1024^3]="Gb"; hum[1024^2]="Mb"; hum[1024]="Kb"; for (x=1024^3; x>=1024; x/=1024) { if (sum>=x) { printf "%.2f %s\n",sum/x,hum[x]; break; } } if (sum<1024) print "1kb"; }'
15.69 Mb

$ ls -l *.txt | awk '{ sum += $5} END  {hum[1024^3]="Gb"; hum[1024^2]="Mb"; hum[1024]="Kb"; for (x=1024^3; x>=1024; x/=1024) { if (sum>=x) { printf "%.2f %s\n",sum/x,hum[x]; break; } } if (sum<1024) print "1kb"; }'
2.10 Mb

如果你有R,你可以用:

> ... | Rscript -e 'print(sum(scan("stdin")));'
Read 4 items
[1] 2232320

因为我对R很熟悉,所以我实际上有几个类似的别名,所以我可以在bash中使用它们,而不必记住这个语法。例如:

alias Rsum=$'Rscript -e \'print(sum(scan("stdin")));\''

我该怎么做

> ... | Rsum
Read 4 items
[1] 2232320

灵感:有没有一种方法可以在一个命令中获得一组数字的最小值、最大值、中值和平均值?


当管道的开始可以产生0行时,最流行的答案是不正确的,因为它最终输出的是0而不是什么。你可以通过总是加0来得到正确的行为:

... | (cat && echo 0) |粘贴-sd+ - | BC


粘贴不是必需的。只要files.txt包含一个或多个有效文件名,就可以执行以下操作:

<files.txt xargs stat -c %s | paste -sd+ | bc

如果没有文件,Cat不需要插入0。如果没有管道,也许在脚本中更方便,您可以使用:

(xargs -a files.txt stat -c %s || echo 0) | paste -sd+ | bc

... |xargs|tr \  +|bc
... |paste -sd+ -|bc

第一个命令只是多了一个符号(注意,它必须在反斜杠后面有两个空格!),但它处理列中有空行的情况,而第二个命令导致带有额外加号的无效表达式。

例如:

echo "2
3
5

" | paste -sd+ -

结果

2+3+5++

哪个BC不能处理,而

echo "2
3
5

" | xargs | tr \  +

给出一个有效表达式

 2+3+5 

哪些可以被导入BC以获得最终结果


我发现自己会用jq来做这样的事情,即使不使用JSON:

$ echo -e '1\n2\n3' | jq --slurp add
6

它已经成为我最近编写的几乎每个脚本的标准依赖项。