Given a list of files in files.txt, I can get a list of their sizes like this:
cat files.txt | xargs ls -l | cut -c 23-30
which produces something like this:
151552
319488
1536000
225280
How can I get the total of all those numbers?
|
|
Given a list of files in
which produces something like this:
How can I get the total of all those numbers?
|
||
|
|
|
|
Here goes
|
||||||||
|
|
|
Instead of using cut to get the file size from output of ls -l, you can use directly:
Awk interprets "$5" as the fifth column. This is the column from ls -l that gives you the file size. |
||
|
|
|
|
In ksh:
|
||
|
|
|
Here's mine
|
||
|
|
|
You can use the following script if you just want to use shell scripting without awk or other interpreters:
|
||
|
|
|
|
Pipe to gawk:
|
||
|
|
|
|
I would use "du" instead.
If you just want the number:
|
||||||||||
|