total up 1st value


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting total up 1st value
# 1  
Old 04-03-2012
total up 1st value

Code:
for p in $@; 
do size = '(ls -RFsh $dval | grep \/$ | awk '{ print $1 }' '
((totalsize = totalsize + size))
echo "$size"
done;
echo "$totalsize "

with that i got size not found [no such file / directory]
anyone got any idea why? Smilie

im trying to add up the size of the directory and print up total
# 2  
Old 04-03-2012
can you post the output of below command

Code:
 
ls -RFsh $dval

# 3  
Old 04-03-2012
Documents/Music:
Documents:
total 16k
4.0k Music/ 4.0k Pictures/ 4.0k Templates/ 4.0k Videos/

Documents/Music:
total 0

Documents/Pictures:
total 0

Documents/Templates:
total 0

Documents/Videos:
total 0
# 4  
Old 04-03-2012
so, you want to sum the total values ?

Code:
total 16k
total 0
total 0
total 0
total 0

# 5  
Old 04-03-2012
with grep \/$ it i will print

4.0k
4.0k
4.0k
4.0k

but size doesnt record it :S

---------- Post updated at 04:50 AM ---------- Previous update was at 04:49 AM ----------

yeh, but im suppose to record selected file size and total only those etc
in Document if i wan Music and Picture only the total size will be 8

---------- Post updated at 04:51 AM ---------- Previous update was at 04:50 AM ----------

was gonna do another grep just to pick up selected arguments
# 6  
Old 04-03-2012
are you trying to calculate the directory size ? ( which the path was passed as argument ?)
# 7  
Old 04-03-2012
yeh

was gonna do ./calculate -d Documents -t Music Picture
this command will printout total size of Music + Picture directory
without using du tho
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sub TOTAL Columns

Input 435,BL_lmapm03,rrr,RDF1+TDEV,0cef,45,mask1 435,BL_lmapm03,rrr,TDEV,080a,50,mask2 435,BL_lmapm02,fff,RDF1+TDEV,0ceg,45,mask4 435,BL_lmapm02,fff,TDEV,080b,60,mask6 435,BL_lmapm06,hhh,TDEV,080f,60,mask9 Output 435,BL_lmapm03,rrr,RDF1+TDEV,0cef,45,mask1... (4 Replies)
Discussion started by: greycells
4 Replies

2. Solaris

Total

i want to list Total HDD count in any soalris machine..can someone suggest some commands or combinations of commands (6 Replies)
Discussion started by: omkar.jadhav
6 Replies

3. Shell Programming and Scripting

awk for total

Have a input file like this ..... attachments 100G shared 1T archive 300M documents 300G remotedocs 150M I need the total in GB's ... where as M=MB,G=GB,T=TB Basically need awk to calculate the total based on end... (5 Replies)
Discussion started by: greycells
5 Replies

4. Shell Programming and Scripting

Help with sum total number of record and total number of record problem asking

Input file SFSQW 5192.56 HNRNPK 611.486 QEQW 1202.15 ASDR 568.627 QWET 6382.11 SFSQW 4386.3 HNRNPK 100 SFSQW 500 Desired output file SFSQW 10078.86 3 QWET 6382.11 1 QEQW 1202.15 1 HNRNPK 711.49 2 ASDR 568.63 1 The way I tried: (2 Replies)
Discussion started by: patrick87
2 Replies

5. Shell Programming and Scripting

du -s *.ext (total)

How would I get a total of a wildcard of files from the 'du' command? du -s *.pdf Result: 736 11mens_bracket.pdf 64 2011_NIT_Bracket_3_13_11.pdf 80 Doing more with Less part1.pdf 1064 Doing more with Less part2.pdf 28 Parkview_1309_Garage.pdf 3964 statsheet-bracket-2011.pdf Expected... (7 Replies)
Discussion started by: AlphaLexman
7 Replies

6. Shell Programming and Scripting

Calculate total space, total used space and total free space in filesystem names matching keyword

Good afternoon! Im new at scripting and Im trying to write a script to calculate total space, total used space and total free space in filesystem names matching a keyword (in this one we will use keyword virginia). Please dont be mean or harsh, like I said Im new and trying my best. Scripting... (4 Replies)
Discussion started by: bigben1220
4 Replies

7. Shell Programming and Scripting

total last digits

hi group, How can I count total number of 5's which are continuous in the end. i.e. in the below string, the o/p should be 4 I just know to calculate total number of 5's $ echo "95952325555" | awk -F "5" '{print NF-1}' 6 (3 Replies)
Discussion started by: uwork72
3 Replies

8. UNIX for Dummies Questions & Answers

du total

Hi All Can anyone help me with the following du querry. I am trying to achieve a total size for all the zipped files in a directory. Using du -k *.gz gets me a file by file list but no handy total at the bottom. Thanks Ed (9 Replies)
Discussion started by: C3000
9 Replies

9. UNIX for Dummies Questions & Answers

grep running total/ final total across multiple files

Ok, another fun hiccup in my UNIX learning curve. I am trying to count the number of occurrences of an IP address across multiple files named example.hits. I can extract the number of occurrences from the files individually but when you use grep -c with multiple files you get the output similar to... (5 Replies)
Discussion started by: MrAd
5 Replies
Login or Register to Ask a Question