Shell script to tail a file with unknown numbers


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Shell script to tail a file with unknown numbers
# 8  
Old 09-13-2019
so the output goes to a file which needs to be sent to the requestor

Code:
tail < filename> | tail -100 > /tmp/log.a
tail < filename> | tail -200 > /tmp/log.b
tail < filename> | tail -500 > /tmp/log.c
cat < filename> ( full file ) > /tmp/log.e
cat < filename> | grep "sept 10 2019"> /tmp/log.f
cat <filename> | grep encrypt > /tmp/log.g

as this request comes few times in a day so if it can be automated though a script then don't have to do same thing again and again

Thanks a lot in advance

Moderator's Comments:
Mod Comment Use code tags..... warning issued
# 9  
Old 09-13-2019
Hi,

You would just use somethin like this, but choose your logic to suit the most likely condition.

Code:
if [[ `grep "encrypt" /tmp/log.g` != "0" ]]
then
exit 0
else
mailx -s "Message Title." user@domain < /tmp/log.g
fi

You may want to build in checking or rotation on the logfile to ensure that you dont get the same notification time after time, this could be scripted to run as a cron job.

Regards

Gull04
# 10  
Old 09-13-2019
Just for the fun of it - how far would this get you:
Code:
FL=$(wc -l < inputfile)
while read
  do    case $REPLY in
        [tT]*)  CMD="NR>$((FL - ${REPLY:1}))";;
        [pP]*)  CMD="/${REPLY:1}/";;
        [fF]*)  CMD=1;;
            *)  echo "usage: CMD Param; CMD ~ t)ail, p)attern search, f)ull"
                continue
        esac

        ((++CNT))
        awk "$CMD" inputfile > /tmp/log.$CNT
  done


Last edited by RudiC; 09-13-2019 at 08:37 AM..
These 2 Users Gave Thanks to RudiC For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script Shell: Count The sum of numbers in a file

Hi all; Here is my file: V1.3=4 V1.4=5 V1.1=3 V1.2=6 V1.3=6 Please, can you help me to write a script shell that counts the sum of values in my file (4+5+3+6+6) ? Thank you so much for help. Kind regards. (3 Replies)
Discussion started by: chercheur111
3 Replies

2. Shell Programming and Scripting

How to tail -f multi logfile in 1 shell script.?

Hello, How to tail -f multi logfile from multi path in 1 shell script. File & Path /usr/home/localmode/mode110l/log/logic/number110/digit110_digit110m4_2013050210.txt /usr/home/localmode/mode103l/log/logic/number103/digit103_digit103m4_2013050210.txt... (4 Replies)
Discussion started by: ooilinlove
4 Replies

3. Shell Programming and Scripting

script to tail file; problem with awk and special characters

Trying to use code that I found to send only new lines out of a log file by doing: while :; do temp=$(tail -1 logfile.out) awk "/$last/{p=1}p" logfile.out #pipe this to log analyzer program last="$temp" sleep 10 done Script works fine when logfile is basic text, but when it contains... (2 Replies)
Discussion started by: moo72moo
2 Replies

4. Shell Programming and Scripting

calculation using awk or shell script in between the numbers

file A E969K D223L E400L E34L file B predicted 3 1 250 251 500 501 1000 The output should be E969K 501 1000 D223L 1 250 E400L 251 500 E34L 1 250 I tried in this way (1 Reply)
Discussion started by: cdfd123
1 Replies

5. Shell Programming and Scripting

Shell script to check numbers!

Hello All, I have 3 types of files. The names of which starts with P,I,M like P********* D********* M********* now I need to do some operations witht hese files.. so if file name starts with P or p then do the operation for P file... fi else (20 Replies)
Discussion started by: smarty86
20 Replies

6. Shell Programming and Scripting

How do I get my script to monitor a new file using tail?

Hi, I have a script which basically watches a log file for new lines using tail, then takes action based on what is logged. I wrote a script to do this for me and its working great, my only problem is that once per week, this log file is archived to another directory, and a new log is created.... (4 Replies)
Discussion started by: lstorm2003
4 Replies

7. Shell Programming and Scripting

Grep or Tail in shell script

Hi, I am writing a shell script that checks catalina logs on a production system and mails me if it detects errors. It greps the logs for known errors which i have defined as variables. The problem is the logs are huge, approx 30,000 before they rotate. So I am forced to use grep instead... (3 Replies)
Discussion started by: Moxy
3 Replies

8. Shell Programming and Scripting

How do I feed numbers from awk(1) to tail(1)?

Hello, I am too daft to remember how to properly feed numbers that I've extracted with awk(1) to tail(1). The actual question is probably a lot more simple than the context, but let me give you the context anyway: I've just received some email that was sent with MS Outlook and arrived in... (8 Replies)
Discussion started by: ropers
8 Replies

9. Shell Programming and Scripting

add numbers in shell script

cat dailyreports | grep "Important list" | awk -F":" '{print $2}' | awk -F" " '{print $1}' hey guys, after running the above combination of cat and awk, i get the below output: 3 4 2 9 now, i need to add these numbers up all in one line. i dont know what to add to that cat and awk one... (2 Replies)
Discussion started by: Terrible
2 Replies

10. Shell Programming and Scripting

retain Line numbers.. in Vi .. OR .. A SHELL SCRIPT

Hello everybody ! GOT SOMETHING INTERESTING... I am trying to retain line number for a text document.. usually we get line numbers in VI using :set nu , but I want to permanently store them. It's a 4000 lines of text and I want grep/search it for a list of words/fields stored in a different... (2 Replies)
Discussion started by: sdlayeeq
2 Replies
Login or Register to Ask a Question