Get value from file!!!!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Get value from file!!!!
# 1  
Old 05-02-2007
Computer Get value from file!!!!

Hi,
I'm trying to get the value of load average from the file /proc/loadavg to my script. I'm a bit new to scripting. I need to get the value as an integer type to do a checking. Can anyone help me on what to do to get the value of the current load average into the script?

Jibu
# 2  
Old 05-02-2007
Jibu,
Please include a sample of the file so people can offer you a solution.
# 3  
Old 05-02-2007
Computer Sample

I get the load average like this

gawk '{ load=$1 }' /proc/loadavg

Now i need to check whether if its greater than 10 and if so stop my apache server.
# 4  
Old 05-02-2007
Jibu,
I meant a sample of the actual input file "/proc/loadavg".
If your file has only one number per record, see if this would work for you:
Code:
while read Inbr
do
  echo $Inbr
  if [ ${Inbr} -gt 77 ]; then
    echo "Greater than 77"
  else
    echo "Less or equal to 77"
  fi
done < /proc/loadavg

# 5  
Old 05-02-2007
Bug

I'm trying to do the check like this.......


uptime|gawk -F" " '{ print $8 }' > load
while read Inbr
do
echo $Inbr
if [ ${Inbr} -gt 77 ]; then
echo "Greater than 77"
else
echo "Less or equal to 77"
fi
done < load

but i get an error


line 7: [: 0.84: integer expression expected

How can i convert the inout from file load to integer???
# 6  
Old 05-02-2007
Jibu,
I still don't understand what you want to accomplish.
Lets start from scratch.
The output of the command "uptime" will give you the following:
Code:
 3:09pm  up 31 day(s), 14:02,  7 users,  load average: 0.07, 0.07, 0.08

Which field do you want to compare?
# 7  
Old 05-02-2007
Bug

Hi,
I want to compare the value 0.07, the current load average

3:09pm up 31 day(s), 14:02, 7 users, load average: 0.07, 0.07, 0.08
 
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script (sh file) logic to compare contents of one file with another file and output to file

Shell script logic Hi I have 2 input files like with file 1 content as (file1) "BRGTEST-242" a.txt "BRGTEST-240" a.txt "BRGTEST-219" e.txt File 2 contents as fle(2) "BRGTEST-244" a.txt "BRGTEST-244" b.txt "BRGTEST-231" c.txt "BRGTEST-231" d.txt "BRGTEST-221" e.txt I want to get... (22 Replies)
Discussion started by: pottic
22 Replies

2. Shell Programming and Scripting

Compare 2 text file with 1 column in each file and write mismatch data to 3rd file

Hi, I need to compare 2 text files with around 60000 rows and 1 column. I need to compare these and write the mismatch data to 3rd file. File1 - file2 = file3 wc -l file1.txt 58112 wc -l file2.txt 55260 head -5 file1.txt 101214200123 101214700300 101250030067 101214100500... (10 Replies)
Discussion started by: Divya Nochiyil
10 Replies

3. Shell Programming and Scripting

Match list of strings in File A and compare with File B, C and write to a output file in CSV format

Hi Friends, I'm a great fan of this forum... it has helped me tone my skills in shell scripting. I have a challenge here, which I'm sure you guys would help me in achieving... File A has a list of job ids and I need to compare this with the File B (*.log) and File C (extend *.log) and copy... (6 Replies)
Discussion started by: asnandhakumar
6 Replies
Login or Register to Ask a Question