Sponsored Content
Full Discussion: Simple Shell Script to Grep
Top Forums Shell Programming and Scripting Simple Shell Script to Grep Post 302415275 by ygemici on Thursday 22nd of April 2010 06:57:24 AM
Old 04-22-2010
MySQL

Quote:
Originally Posted by DallasT
Ygemici, thanks. One question: can multiple file locations be added to LDIR?

Jim: trying to grep perticular strings from a newly generated current file from various locations. Then displaying the result. And then email the result.
Code:
#!/bin/bash
 
a=0
c=0
COUNT=0
 
#Which Search Files
WHICHFILE=ORProxyTC`date '+%m%d%Y'`
 
# Which Dir Listing
DIRS=( "/home/student/bin/dir1" "/home/student/bin/dir2" "/home/student/bin/dir3" "/home/student/bin/dir4" )
 
#Processing Which Files in Which Dirs
           for WHICHDIR in ${DIRS[*]}
                do
                    for i in $( (ls -1 $WHICHDIR/$WHICHFILE*.txt) )
                        do
                         FILES[c]="$i"
                         GREPFUNC=$(grep -i -E -H "login|Successfully" ${FILES[c]})
                                if [ $? -eq 0 ] ; then
                                    ((++COUNT))
                                    echo ""
                                    echo "Search completed and found: ${GREPFUNC}."
                                    echo "#################################################################"
                                fi
                                    ((++c))
                       done
                        echo ""
               done
                        echo "This is the total number of files: ${COUNT}."
                        echo "#################################################################"

Code:
[root@sistem1lnx bin]# ./search
Search completed and found: /home/student/bin/dir1/ORProxyTC0422201011.txt:login|Successfully.
#################################################################
Search completed and found: /home/student/bin/dir1/ORProxyTC04222010.txt:login|Successfully.
#################################################################
 
Search completed and found: /home/student/bin/dir2/ORProxyTC0422201011.txt:login|Successfully.
#################################################################
Search completed and found: /home/student/bin/dir2/ORProxyTC04222010193.txt:login|Successfully.
#################################################################
 
Search completed and found: /home/student/bin/dir3/ORProxyTC0422201012.txt:login|Successfully.
#################################################################
 
Search completed and found: /home/student/bin/dir4/ORProxyTC0422201011.txt:login|Successfully.
#################################################################
Search completed and found: /home/student/bin/dir4/ORProxyTC042220101999.txt:login|Successfully.
#################################################################
Search completed and found: /home/student/bin/dir4/ORProxyTC04222010.txt:login|Successfully.
#################################################################
This is the total number of files: 8.
#################################################################

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

A Simple shell Script

Hi there. im creating a shell script which helps me perform simple functions when i use it, but there are still two functions which i cannot figure out yet. 1) how can I count the number of occurences of a certain file within the whole file system? (filename supplied as an argument.) 2) How... (2 Replies)
Discussion started by: provo
2 Replies

2. Shell Programming and Scripting

Please Help On Simple Shell Script

This is an assignment I have to do everyone but I was viewing the threads and I assumed that I could write this assignment simpler than what My instructor is directing.. Here is the Assignment This shell script has the following specifications: - It must be named: "printpasswd." - It must... (1 Reply)
Discussion started by: dmosheye
1 Replies

3. Shell Programming and Scripting

simple shell - how to get a parameter typed in a shell script

Hi, I am new to unix and using linux 7.2. I would like to create a script that would make it easyer for me to run my java programms. At the moment I have to type java myJavaprogram I am trying to write a script that will allow me to type something like this "myscript myJavaprogram" or maybe... (4 Replies)
Discussion started by: cmitulescu
4 Replies

4. Shell Programming and Scripting

Problem with IF - CAT - GREP in simple shell script

Hi all, Here is my requirement I have to search 'ORA' word in out.log file,if it is present then i need to send that file (out.log) content to some mail id.If 'ORA' word is not in that file then i need to send 'load succesful' message to some mail id. The below the shell script is not... (5 Replies)
Discussion started by: mak_boop
5 Replies

5. Shell Programming and Scripting

Simple Shell Script

Hello Friends, I am writing a shell script which will grab a file if it exists and copies it to another folder and will append with current date. I have written but gives me error, plz help: -------------------------------------------- #!/usr/bin/sh source=/home/dev4rice/naveen/test1... (4 Replies)
Discussion started by: ganesh123
4 Replies

6. Shell Programming and Scripting

Simple grep script

I'm trying to write a simple script to identify every user who tried to “sudo” on the system. I have the first portion down to grep the log file grep “sudo” /var/log/secure. What I want to do is have the script identify the person just one time not every instance the user tried... (4 Replies)
Discussion started by: bouncer
4 Replies

7. Shell Programming and Scripting

Help with very simple Shell Script

Write a shell that receives as parameters two folder names. Copies the second folder as subfolder into the first one. Only folders and files with the '.txt' extension will be copied. Detect and avoid recursive copy. This is what I have to do and I don't know where to start. In fact, I started... (5 Replies)
Discussion started by: sharpsh07er
5 Replies

8. Shell Programming and Scripting

Help with simple Shell Script

Hi , I am in need of simple shell script that has one input file containing some words Input file 1 : ****ALEX***JOHN*******VIRGIL***** CHRITINE*****FAISAL*****DON***** ****ALEX***JOHN*******VIRGIL***** CHRITINE*****FAISAL*****DON***** ****ALEX***JOHN*******VIRGIL*****... (6 Replies)
Discussion started by: kmanjuna
6 Replies

9. Shell Programming and Scripting

Help on simple shell script

Hello, I am running openmediavault on my Raspberry and I would like to use it as a backup FTP server of snapshots taken from my IP cams. So I get the network recorder to upload every 3 seconds a snapshot to the Raspberry. Everything works perfectly. I would need now a simple script that... (5 Replies)
Discussion started by: dcaccount
5 Replies

10. Shell Programming and Scripting

Help on simple shell script

Hello, I need to create one very simple shell script that checks if the first character of the file ./pump.txt is 0 and in that case gives a message. If the first character is instead 1, it does give a different message. I have written: irr= head -c 1 ./pump.txt if ]; then echo... (4 Replies)
Discussion started by: dcaccount
4 Replies
All times are GMT -4. The time now is 08:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy