Need to filter the result set within 2 time frame


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Need to filter the result set within 2 time frame
# 8  
Old 05-26-2018
You may try e.g.
Code:
sed -n "\#$first#,\#$last#p" file

, then.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with filter result (scientific notation) by using awk

Input file: data1 0.05 data2 1e-14 data1 1e-330 data2 1e-14 data5 2e-60 data5 2e-150 data1 4e-9 Desired output: data2 1e-14 data1 1e-330 data2 1e-14 data5 2e-60 data5 2e-150 I would like to filter out those result that column 2 is less than 1e-10. Command try: (1 Reply)
Discussion started by: cpp_beginner
1 Replies

2. Shell Programming and Scripting

Help on script to capture info on log file for a particular time frame

Hi I have a system running uname -a Linux cmovel-db01 2.6.32-38-server #83-Ubuntu SMP Wed Jan 4 11:26:59 UTC 2012 x86_64 GNU/Linux I would like to capture the contents of /var/log/syslog from 11:00AM to 11:30AM and sent to this info via email. I was thinking in set a cron entry at that... (2 Replies)
Discussion started by: fretagi
2 Replies

3. UNIX for Dummies Questions & Answers

UNIX Account getting Locked Everyday between same Time Frame

I am facing an Issue with a particular Unix Account ( ie a particular Userid) getting LOCKED everyday between 7:30am and 8:00am. The Password associated with this particular Account has been setup such that it should never Expire at all but it does LOCK the Account after more than 3 failed... (5 Replies)
Discussion started by: pchegoor
5 Replies

4. Shell Programming and Scripting

Help with filter result that fulfill criteria

Input file: ##fileformat=tab ##reference=file:input.txt #Line Position Score Input_185827_2127 1071 67 Input_18213_21 1021 100 Input_9012_214 200 150 Input_935_217 124 70 Output file: ##fileformat=tab ##reference=file:input.txt #Line Position Score Input_18213_21 1021... (2 Replies)
Discussion started by: perl_beginner
2 Replies

5. Shell Programming and Scripting

awk : collecting all data between two time frame

Hi Experts , I need your help to collect the complete data between two time frame from the log files, when I try awk it's collecting the data only which is printed with time stamp for example, awk works well from "16:00 to 17:30" but its not collecting <line*> "from 17:30 to 18:00" ... (8 Replies)
Discussion started by: zenkarthi
8 Replies

6. Shell Programming and Scripting

awk : Search for text between two time frame (12 hours)

I have created the script to grep the errors from weblogic logs files and redirecting output to file.txt ...From file.txt I'm using awk command to collect the past 20 mins output...The script running from cron every 15 mins... The script working well... Now the challenges, I'm trying to use... (27 Replies)
Discussion started by: zenkarthi
27 Replies

7. Shell Programming and Scripting

Search for text between two time frame using sed

I have log files with time stamps. I want to search for text between two time stamp using sed even if the first tme stamp or the last time stamp are not present. For e.g. if i search between 9:30 and 9:40 then it should return text even if 9:30 or 9:40 is not there but between 9:30 and 9:40 is... (8 Replies)
Discussion started by: Azher
8 Replies

8. Shell Programming and Scripting

Shell Script to delete files within a particular time frame under multiple sub folders

Greetings! I'm looking for starting information for a shell script. Here's my scenario: I have multiple folders(100) for example: /www/test/applications/app1/logs /www/test/applications/app2/logs Within these folders there are log files files that need to be deleted after a month. ... (3 Replies)
Discussion started by: whysolucky
3 Replies

9. Shell Programming and Scripting

Filter the column and print the result based on condition

Hi all This is my output of the some SQL Query TABLESPACE_NAME FILE_NAME TOTALSPACE FREESPACE USEDSPACE Free ------------------------- ------------------------------------------------------- ---------- --------- ---------... (2 Replies)
Discussion started by: jhon
2 Replies

10. Shell Programming and Scripting

search string during a specific time frame

Can someone please help me with searching a string during a specific time frame. Below is the format of the time from my log file. "GET /AAM2009_wherewereheaded.wmv HTTP/1.1" 200 52307085 The search string I need is "AAM2009_wherewereheaded.wmv" I need to search the number of... (1 Reply)
Discussion started by: tadi18
1 Replies
Login or Register to Ask a Question
ABRT-CONFIGURATION(8)						    ABRT Manual 					     ABRT-CONFIGURATION(8)

NAME
abrt-configuration - dbus server for reading/writing ABRT configuration SYNOPSIS
abrt-configuration [-v[v]...] [-t NUM] DESCRIPTION
abrt-configuration allows other programs to read/write ABRT configuration over D-Bus. Normally abrt-configuration is started by D-Bus daemon on demand, and terminates after a timeout. The server listens on com.redhat.problem.configuration address on the system bus and exports the configuration as D-Bus objects identified by D-Bus path and D-Bus interface. The configuration objects are created from D-BUS Object Introspection XML files placed in /usr/share/problems/config/interfaces directory. Each file must contain exactly one node element with one interface element and the interface must contain only property elements. The node element must also have both com.redhat.problems.configuration.ConfFile and com.rehdat.problems.configuration.DefaultConfFile annotations elements which provide path to the working configuration file, where the changes are written, and to the default configuration file. property elements can also have the path annotations but they must be specified both or neither. 'propety's name must be equal to some option from the configuration files and its type must be one of the following D-Bus types: b,i,s,as. The server allows all users to read the configuration, but modifications are authorized over PolicyKit with com.redhat.problem.configuration.update policy. Example of the configuration XML file: <node name="/com/redhat/problems/configuration/ccpp"> <annotation name="com.redhat.problems.ConfFile" value="/etc/abrt/plugins/CCpp.conf" /> <annotation name="com.redhat.problems.DefaultConfFile" value="/usr/share/abrt/conf.d/plugins/CCpp.conf" /> <interface name="com.redhat.problems.configuration.ccpp"> <property name="MakeCompatCore" type="b" access="readwrite"/> <property name="SaveBinaryImage" type="b" access="readwrite"/> <property name="VerboseLog" type="i" access="readwrite"/> <property name="DebuginfoLocation" type="s" access="readwrite"/> </interface> </node> OPTIONS
-v Log more detailed debugging information. -t NUM Exit after NUM seconds of inactivity. AUTHORS
o ABRT team SEE ALSO
abrt.conf(5) abrt 2.1.11 06/18/2014 ABRT-CONFIGURATION(8)