유닉스 쉘에서 숫자 열을 더하십시오


198

의 파일 목록이 주어지면 다음 files.txt과 같이 크기 목록을 얻을 수 있습니다.

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

다음과 같은 것을 생성합니다 :

  151552
  319488
 1536000
  225280

그 숫자 의 합계 를 어떻게 구할 수 있습니까?

답변:


383
... | paste -sd+ - | bc

내가 찾은 가장 짧은 것입니다 ( UNIX Command Line 블로그에서).

편집 :- @Dogbert와 @Owen 덕분에 이식성 에 대한 인수가 추가되었습니다 .


좋은. 솔라리스에서도 최신 정보 필요
Owen B

8
alias sum="paste -sd+ - | bc"쉘 완성에 추가됨, 감사합니다 mate
slf

. . .| x=$(echo <(cat)); echo $((0+${x// /+}+0))항상 모든 배쉬를 원한다면 :
qneill

13
@slf, 조심하세요, 오버로드되었습니다/usr/bin/sum
qneill

3
조심, bc일부 시스템에서 사용할 수 없습니다! awk반면에 POSIX 준수를 위해서는 (내 생각에) 필요합니다.
vktec

154

간다

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

34
awk를 사용하는 것은 좋은 생각이지만 왜 cut? 예측 가능한 열 번호이므로... | xargs ls -l | awk '{total = total + $5}{END{print total}'
dmckee --- ex-moderator kitten를 사용하십시오.

3
당신은 물론 정확합니다-이미 존재하는 것의 끝에 추가하는 것이 더 쉬웠습니다 :-)
Greg Reynolds

2

7
이것을 조금 더 짧게 만들기 위해, total+=$1대신 대신 사용할 수 있습니다total = total + $1
vktec

10

ls -l 출력에서 파일 크기를 가져 오기 위해 cut 을 사용하는 대신 직접 사용할 수 있습니다.

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

Awk는 "$ 5"를 다섯 번째 열로 해석합니다. 파일 크기를 제공하는 ls -l 의 열입니다 .


10

파일 이름에 공백이 있으면 고양이가 작동하지 않습니다. 여기에 perl one-liner가 있습니다.

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

8
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))"

1
... | python -c'import sys; print(sum(int(x) for x in sys.stdin))'파이썬 2가 올해 말에 사라질 때.
시조

don @ oysters : ~ / Documents $ 고양이 세금 | python3 -c "sys 가져 오기; print (sys.stdin에서 x의 경우 sum (int (x)))"역 추적 (최근의 마지막 호출) : <module> 파일의 "<string> 파일"<string> ", 라인 1 > ", 라인 1에 <genexpr>에 ValueError :베이스 (10) INT ()에 대한 잘못된 문자 '\ n'
밝은 걸치는


5

전체 ls -l 및 cut은 stat 가있을 때 다소 복잡합니다 . 또한 ls -l 의 정확한 형식에 취약합니다 ( cut 의 열 번호를 변경할 때까지 작동하지 않았습니다 )

또한 cat쓸모없는 사용을 수정했습니다 .

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

2
허. 32 년 동안 유닉스를 사용해 왔으며, 그것이 <infile command(그리고보다 나은 순서로) 동일 하다는 것을 결코 알지 못했습니다 command <infile.
Camille Goudeseune

5

bc가 설치되지 않은 경우 시도하십시오

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

대신에

... | paste -sd+ - | bc

$( ) <-명령 실행 값을 반환

$(( 1+2 )) <-평가 결과를 반환

echo <-화면에 에코


4

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

3

대신 "du"를 사용합니다.

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

당신이 숫자를 원한다면 :

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

5
디스크 사용량! = 파일 크기. du는 디스크 사용량을보고합니다.
0x6adb015

4
-b 스위치를 사용하면 필요한 작업을 수행 할 수 있습니다.
RichieHindle

@ 0x6adb015 좋은 지식입니다. 고마워 몰랐어
MichaelJones

3
OP가 숫자 열을 추가하려는 특정 이유에 대한 유용한 답변이지만 일반적인 숫자 추가의 경우에는 부족합니다. (나는 항상 "du"를 사용하지만 여기에 명령 줄 수학을 찾기 위해 왔습니다. :-))
Michael H.

12
files.txt크면 작동하지 않습니다 . 파이프 된 인수 수가 xargs특정 임계 값 에 도달하면에 대한 여러 호출에 대해 인수 가 분리됩니다 du. 끝에 표시된 총계 du는 전체 목록이 아니라 마지막으로 호출 한 총계입니다 .
Matthew Simoneau


1

관개 파이프 :

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

1

내 꺼야

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

6
펄보다 더 추악한 언어가있는 모든 것을 증명하기 위해 +1 :)
bdonlan

1
#
#       @(#) 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. *

1

사용하고 싶습니다 ....

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

그들은 각 줄의 합계를 보여줄 것입니다 ...

이 상황에 적용 :

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

총계는 마지막 값입니다 ...


1
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

파이프도 필요 없습니다 : awk '{ total += $1} END {print total}' files.txt빠릅니다
bmv

0

내 생각에 가장 간단한 해결책은 "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

0

순수한 배쉬

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

0
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 )

0

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

영감 : 단일 명령으로 숫자 목록의 최소, 최대, 중간 및 평균을 얻는 방법이 있습니까?

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.