file size script


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers file size script
# 1  
Old 09-14-2006
file size script

Hi, I am trying to write a script that will send an email to me if the size of a folder is below a certain amount.

Does anyone know how to write the if (size < 1000) statement. I know how to send the email? I just need the code for determing a folder size.

Thanks,
Eric
# 2  
Old 09-14-2006
Hi,

Try this:

#!/bin/sh

SIZE=`ls -ltr FILENAME|awk '{print $5}'`

if [ $SIZE -ge 700 ] ##say..size exceeds 700

then

echo "FILE SIZE EXCEEDED!!"

else

echo "FILE SIZE OK"

fi


## Hope this helps,

## Praveen Indramohan
~
# 3  
Old 09-15-2006
Lightbulb

@praveen : i think u got it a bit wrong.he said he wanted to be informed by an email...

the following code will work(hoping u have a mailing client installed in ur OS)
Code:
#!/bin/sh
SIZE=`du -s FOLDERNAME |awk '{print $1}'`
if [ $SIZE -le 1000 ] 
then
echo -e "FOLDER SIZE LESS THAN 1000 !!\n Folder size=$SIZE" | mail -s "Folder size notification" emailid@hostname.com
fi

hope this works.....
# 4  
Old 09-15-2006
yeah, may be,

but he said : "I just need the code for determing a folder size."

and he said : i know how to send email?( Smilie why the question mark?)

Anyway, hope it works for him.

Thanks,

Praveen Indramohan
# 5  
Old 09-15-2006
Hi, I am using exact code from sayonm. I get the error though that:

line 2: }: command not found
line 3: [: -le: unary command expected

Anyone know how to fix these two errors. I am assuming by unary it just means to use <, >, =, etc.

As for the first error, it seems like it doesn't know the print command. I am using Ubuntu, if that helps.

Thanks,
Eric
# 6  
Old 09-17-2006
please,
try this SIZE calculation, it does not need awk and removes those backticks.
advantage 2, you can define the directory as cmd line argument else the current directore is counted.
btw: do not forget to chmod +x the script !

SIZE=$( du -s $1 | expand | cut -d\ -f1 ) # note cut -d\<space><space> !!!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash Script - File Size

I have a bash script. I need a modification for safety. my original bash script: mv /home/script/backup /home/script/backup2 mysql -u user -ppassword -Ddatabase --batch --skip-column-names -e 'select id, url from videos where url like "%http%" limit 1' | while read id url do youtube-dl... (1 Reply)
Discussion started by: tara123
1 Replies

2. Shell Programming and Scripting

Split file based on file size in Korn script

I need to split a file if it is over 2GB in size (or any size), preferably split on the lines. I have figured out how to get the file size using awk, and I can split the file based on the number of lines (which I got with wc -l) but I can't figure out how to connect them together in the script. ... (6 Replies)
Discussion started by: ssemple2000
6 Replies

3. Shell Programming and Scripting

shell script for getting the file size

Hi can some one please help me how i can get the output i require: My text file "sample.txt" contains the text like below Filesystem Size Used Avail Use% Mounted on /dev/mapper/vg_fedora-lv_root 15G 2.6G 12G 19% /hari Filesystem Size ... (3 Replies)
Discussion started by: harimhkr
3 Replies

4. Shell Programming and Scripting

Script to read file size and send email only if size > 0.

Hi Experts, I have a script like $ORACLE_HOME/bin/sqlplus username/password # << ENDSQL set pagesize 0 trim on feedback off verify off echo off newp none timing off set serveroutput on set heading off spool Schemaerrtmp.txt select ' TIMESTAMP COMPUTER NAME ... (5 Replies)
Discussion started by: welldone
5 Replies

5. Shell Programming and Scripting

Not able to make the file size 0 with the mentioned script

#!/bin/sh ########################################################################################################## #This script is being used for AOK application for cleaning up the .out files and zip it under logs directory. # IBM # Created #For pdocap201/pdoca202 .out files for AOK #1.... (3 Replies)
Discussion started by: mridul10_crj
3 Replies

6. Shell Programming and Scripting

Script to check file system size

Dears, the output of this command df -h | tr -s ' ' | cut -f5 -d' ' is capacity 24% 0% 0% 0% 0% 1% 0% 24% 24% 0% 93% 1% (4 Replies)
Discussion started by: xxmasrawy
4 Replies

7. Shell Programming and Scripting

script to get file size

Hi All, I have some requirement. i dont know if we can write some shell script to fulfill the requirement. Here is my requirement... I have some files under /var/opt/abc/xyz like below. -rw-r--r-- 1 root root 789222 Aug 14 11:03 big.sh -rw-r--r-- 1 root root 789222 Aug 14 11:03 big.txt... (25 Replies)
Discussion started by: s_linux
25 Replies

8. Shell Programming and Scripting

compare file size from a output file from a script

Hi guys, firstly I'm working on SunOS 5.10 Generic_125100-10 sun4u sparc SUNW,Sun-Fire-V240 I've made a script to compress two directory and then send them to an other server via ftp. This is working very well. Inside theis script I decide to log usefull data for troubleshooting in case of... (7 Replies)
Discussion started by: moustik
7 Replies

9. Shell Programming and Scripting

Get file size in c shell script?

Hi, I want to use an 'if statement' that will check if a certian file is greater in size than a certain value given by the user, but cannot get it to work. Do you have any ideas how this can be done? Your help is appreciated! (6 Replies)
Discussion started by: Dado
6 Replies

10. UNIX for Dummies Questions & Answers

testing for file size in script

Has anyone got a few tips on how I can test if the file size is 0? I am moving files on a regular basis from one location to another with ftp. The files which are 0 bytes in size we want to discard. Thankyou in advance. (3 Replies)
Discussion started by: Ivo
3 Replies
Login or Register to Ask a Question