유닉스 쉘에서 숫자 열을 더하십시오
의 파일 목록이 주어지면 다음 files.txt
과 같이 크기 목록을 얻을 수 있습니다.
cat files.txt | xargs ls -l | cut -c 23-30
다음과 같은 것을 생성합니다 :
151552
319488
1536000
225280
그 숫자 의 합계 를 어떻게 구할 수 있습니까?
... | paste -sd+ - | bc
내가 찾은 가장 짧은 것입니다 ( UNIX Command Line 블로그에서).
편집 :-
@Dogbert와 @Owen 덕분에 이식성 에 대한 인수가 추가되었습니다 .
간다
cat files.txt | xargs ls -l | cut -c 23-30 |
awk '{total = total + $1}END{print total}'
파일 이름에 공백이 있으면 고양이가 작동하지 않습니다. 여기에 펄 원 라이너가 있습니다.
perl -nle 'chomp; $x+=(stat($_))[7]; END{print $x}' files.txt
ls -l 출력에서 파일 크기를 가져 오기 위해 cut 을 사용하는 대신 직접 사용할 수 있습니다.
$ cat files.txt | xargs ls -l | awk '{total += $5} END {print "Total:", total, "bytes"}'
Awk는 "$ 5"를 다섯 번째 열로 해석합니다. 파일 크기를 제공하는 ls -l 의 열입니다 .
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))"
TMTWWTDI : Perl에 파일 크기 연산자 (-s)가 있습니다
perl -lne '$t+=-s;END{print $t}' files.txt
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}'
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
ksh에서 :
echo " 0 $(ls -l $(<files.txt) | awk '{print $5}' | tr '\n' '+') 0" | bc
전체 ls -l 및 cut은 stat 가있을 때 다소 복잡합니다 . 또한 ls -l 의 정확한 형식에 취약합니다 ( cut 의 열 번호를 변경할 때까지 작동하지 않았습니다 )
<files.txt xargs stat -c %s | paste -sd+ - | bc
관개 파이프 :
cat files.txt | xargs ls -l | cut -c 23-30 | gawk 'BEGIN { sum = 0 } // { sum = sum + $0 } END { print sum }'
내 꺼야
cat files.txt | xargs ls -l | cut -c 23-30 | sed -e :a -e '$!N;s/\n/+/;ta' | bc
#
# @(#) 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. *
사용하고 싶습니다 ....
echo "
1
2
3 " | sed -e 's,$, + p,g' | dc
they will show the sum of each line...
applying over this situation:
ls -ld $(< file.txt) | awk '{print $5}' | sed -e 's,$, + p,g' | dc
Total is the last value...
In my opinion, the simplest solution to this is "expr" unix command:
s=0;
for i in `cat files.txt | xargs ls -l | cut -c 23-30`
do
s=`expr $s + $i`
done
echo $s
Pure 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[*]}") ))
Or you could just sum them as you read the sizes
declare -i total=0
while read x; total+=x; done < <( cat files.txt | xargs ls -l | cut -c 23-30 )
If you don't care about bite sizes and blocks is OK, then just
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}'
You can use the awk to do the same it even skips the non integers
$ cat files.txt
1
2.3
3.4
ew
1
$ cat files.txt | awk '{ total += $1} END {print total}'
7.7
or you can use ls command and calculate human readable output
$ 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
If you have R, you can use:
> ... | Rscript -e 'print(sum(scan("stdin")));'
Read 4 items
[1] 2232320
Since I'm comfortable with R, I actually have several aliases for things like this so I can use them in bash
without having to remember this syntax. For instance:
alias Rsum=$'Rscript -e \'print(sum(scan("stdin")));\''
which let's me do
> ... | Rsum
Read 4 items
[1] 2232320
Inspiration: Is there a way to get the min, max, median, and average of a list of numbers in a single command?
참고URL : https://stackoverflow.com/questions/926069/add-up-a-column-of-numbers-at-the-unix-shell
'Programming' 카테고리의 다른 글
입력 번호에서 스피너 숨기기-Firefox 29 (0) | 2020.05.17 |
---|---|
Postgres : 테이블 외래 키를 나열하는 SQL (0) | 2020.05.17 |
숫자 0..9를 2 자리로 표시하는 방법 (날짜가 아님) (0) | 2020.05.17 |
C ++에서 함수 내부에 함수를 가질 수 있습니까? (0) | 2020.05.17 |
Excel 2013에서 .csv 파일을 올바르게 표시하는 방법은 무엇입니까? (0) | 2020.05.17 |