의 파일 목록이 주어지면 다음 files.txt
과 같이 크기 목록을 얻을 수 있습니다.
cat files.txt | xargs ls -l | cut -c 23-30
다음과 같은 것을 생성합니다 :
151552
319488
1536000
225280
그 숫자 의 합계 를 어떻게 구할 수 있습니까?
의 파일 목록이 주어지면 다음 files.txt
과 같이 크기 목록을 얻을 수 있습니다.
cat files.txt | xargs ls -l | cut -c 23-30
다음과 같은 것을 생성합니다 :
151552
319488
1536000
225280
그 숫자 의 합계 를 어떻게 구할 수 있습니까?
답변:
... | paste -sd+ - | bc
내가 찾은 가장 짧은 것입니다 ( UNIX Command Line 블로그에서).
편집 :-
@Dogbert와 @Owen 덕분에 이식성 에 대한 인수가 추가되었습니다 .
alias sum="paste -sd+ - | bc"
쉘 완성에 추가됨, 감사합니다 mate
. . .| x=$(echo <(cat)); echo $((0+${x// /+}+0))
항상 모든 배쉬를 원한다면 :
/usr/bin/sum
bc
일부 시스템에서 사용할 수 없습니다! awk
반면에 POSIX 준수를 위해서는 (내 생각에) 필요합니다.
간다
cat files.txt | xargs ls -l | cut -c 23-30 |
awk '{total = total + $1}END{print total}'
cut
? 예측 가능한 열 번호이므로... | xargs ls -l | awk '{total = total + $5}{END{print total}'
total+=$1
대신 대신 사용할 수 있습니다total = total + $1
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))"
... | python -c'import sys; print(sum(int(x) for x in sys.stdin))'
파이썬 2가 올해 말에 사라질 때.
전체 ls -l 및 cut은 stat 가있을 때 다소 복잡합니다 . 또한 ls -l 의 정확한 형식에 취약합니다 ( cut 의 열 번호를 변경할 때까지 작동하지 않았습니다 )
<files.txt xargs stat -c %s | paste -sd+ - | bc
<infile command
(그리고보다 나은 순서로) 동일 하다는 것을 결코 알지 못했습니다 command <infile
.
bc가 설치되지 않은 경우 시도하십시오
echo $(( $(... | paste -sd+ -) ))
대신에
... | paste -sd+ - | bc
$( )
<-명령 실행 값을 반환
$(( 1+2 ))
<-평가 결과를 반환
echo
<-화면에 에코
대신 "du"를 사용합니다.
$ cat files.txt | xargs du -c | tail -1
4480 total
당신이 숫자를 원한다면 :
cat files.txt | xargs du -c | tail -1 | awk '{print $1}'
files.txt
크면 작동하지 않습니다 . 파이프 된 인수 수가 xargs
특정 임계 값 에 도달하면에 대한 여러 호출에 대해 인수 가 분리됩니다 du
. 끝에 표시된 총계 du
는 전체 목록이 아니라 마지막으로 호출 한 총계입니다 .
ksh에서 :
echo " 0 $(ls -l $(<files.txt) | awk '{print $5}' | tr '\n' '+') 0" | bc
cut
데는 좋지만 수학을 수행하는 awks 기능은 무시합니다.
#
# @(#) 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 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
빠릅니다
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 )
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