Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Extracting data between specific lines, multiple times Post 302749865 by jim mcnamara on Saturday 29th of December 2012 09:13:03 PM
Old 12-29-2012
'I just want the numbers':
Code:
 awk '$1 ~ /^[0-9]/'  inputfile > outputfile

print only lines where the first non-white character is a number.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trying to read data multiple times

I am developing a script to automate Global Mirroring on IBM DS8100's. Part of the process is to establish a global copy and wait until the paired LUN's Out of Sync tracks goes to zero. I can issue a command to display the ouput and am trying to use AWK to read the appropriate field. I am... (0 Replies)
Discussion started by: coachr
0 Replies

2. Shell Programming and Scripting

Trying to read data multiple times

I am developing a script to automate Global Mirroring on IBM DS8100's. Part of the process is to establish a global copy and wait until the paired LUN's Out of Sync tracks goes to zero. I can issue a command to display the ouput and am trying to use AWK to read the appropriate field. I am... (1 Reply)
Discussion started by: coachr
1 Replies

3. Shell Programming and Scripting

Extracting text out of specific lines

Hi, I have a file like LAHORE 2009-04-16 16:04:19 THU S5830 FAULT MESSAGE SUPPRESS STATUS LOC : ASP00 STS : SUPPRESSING CONTINUE INF : F6201 TRUNK. DATA FAULT REPORT COMPLETED LAHORE 2009-04-16 16:04:20 THU S8400 ISUP SIGNALLING TRACE -... (3 Replies)
Discussion started by: krabu
3 Replies

4. Shell Programming and Scripting

extracting specific lines from a file

hi all, i searched in unix.com and accquired the following commands for extracting specific lines from a file .. sed -n '16482,16482p' in.sql > out.sql awk 'NR>=10&&NR<=20' in.sql > out.sql.... these commands are working fine if i give the line numbers as such .. but if i pass a... (2 Replies)
Discussion started by: sais
2 Replies

5. Shell Programming and Scripting

extracting specific text from lines

Hello, i've got this output text: and i need it to look something like this: which means that there won't be absolute path of each directory, just it's size and the last word after last '/' in each line, and i also don't need last line '1.7M /tmp' Looks like there is a simple... (5 Replies)
Discussion started by: krater559
5 Replies

6. Shell Programming and Scripting

Extracting specific lines of data from a file and related lines of data based on a grep value range?

Hi, I have one file, say file 1, that has data like below where 19900107 is the date, 19900107 12 144 129 0.7380047 19900108 12 168 129 0.3149017 19900109 12 192 129 3.2766666E-02 ... (3 Replies)
Discussion started by: Wynner
3 Replies

7. UNIX for Dummies Questions & Answers

Filtering data -extracting specific lines

I have a table to data which one of the columns include string of text from within that, I am searching to include few lines but not others for example I want to to include some combination of word address such as (address.| address? |the address | your address) but not (ip address | email... (17 Replies)
Discussion started by: A-V
17 Replies

8. UNIX for Advanced & Expert Users

Extracting specific lines from data file

Hello, Is there a quick awk one-liner for this extraction?: file1 49389 text55 52211 text66 file2 59302 text1 49389 text2 85939 text3 52211 text4 13948 text5 Desired output 49389 text2 52211 text4 Thanks!! (5 Replies)
Discussion started by: palex
5 Replies

9. Shell Programming and Scripting

Extracting data from multiple lines

Hi All, I am stuck in one step.. I have one file named file.txt having content: And SGMT.perd_id = (SELECT cal.fiscal_perd_id FROM $ODS_TARGT.TIM_DT_CAL_D CAL FROM $ODS_TARGT.GL_COA_SEGMNT_XREF_A SGMT SGMT.COA_XREF_TYP_IDN In (SEL COA_XREF_TYP_IDN From... (4 Replies)
Discussion started by: Shilpi Gupta
4 Replies

10. Shell Programming and Scripting

Extracting data from specific rows and columns from multiple csv files

I have a series of csv files in the following format eg file1 Experiment Name,XYZ_07/28/15, Specimen Name,Specimen_001, Tube Name, Control, Record Date,7/28/2015 14:50, $OP,XYZYZ, GUID,abc, Population,#Events,%Parent All Events,10500, P1,10071,95.9 Early Apoptosis,1113,11.1 Late... (6 Replies)
Discussion started by: pawannoel
6 Replies
YP_MKDB(8)						    BSD System Manager's Manual 						YP_MKDB(8)

NAME
yp_mkdb -- generate the NIS databases SYNOPSIS
yp_mkdb -c yp_mkdb -u dbname yp_mkdb [-c] [-b] [-s] [-f] [-i inputfile] [-o outputfile] [-d domainname] [-m mastername] inputfile dbname DESCRIPTION
The yp_mkdb utility creates db(3) style databases for use with FreeBSD's NIS server. The yp_mkdb utility reads data from inputfile, and writes it to dbname in db(3) format (using the hash table method). The input should be in 'key data' format, which is to say two fields of ASCII data separated by white space. The first field is assumed to be the key, and everything else is assumed to be the data. These data- bases are typically stored in /var/yp/[domainname] where domainname is the name of the NIS domain being served. The yp_mkdb utility is usu- ally invoked by /var/yp/Makefile. The yp_mkdb utility can also be used to dump an NIS database file so that its contents can be examined. For security reasons, all databases that yp_mkdb creates are readable and writable by owner only (and usually the owner is root). The following options are available: -c Cause yp_mkdb to send a YPPROC_CLEAR request to ypserv(8) on the local host. This signal tells the server to close any open database descriptors and flush out its database cache. If used alone, this flag signals the server and does nothing else. If used as part of a database creation command, yp_mkdb will send the signal only after the new database has been successfully created. -b Cause yp_mkdb to add a special entry to the database with a key of YP_INTERDOMAIN and an empty data field. If this key is present in a map, it alters the behavior of the 'match' procedure in ypserv(8) slightly. If a match query fails (because the server could not find a record that matched the supplied key), and the YP_INTERDOMAIN key exists within the queried map, ypserv(8) will try to match the entry again using a DNS lookup. Note that this special behavior only applies to the hosts maps. Using the -b flag for other maps has no effect. -s This flag is used to add a special entry to the database with a key of YP_SECURE and an empty data field. If this key is present in a map, ypserv(8) will deny access to the map to any client that is not using a reserved port for its query. This is used mainly for the master.passwd maps, which should be restricted to privileged access only. -f This flag is used to turn on filtering of lines in the source file input that start with ``+'' or ``-'' characters. These characters have special meaning for the group, passwd and master.passwd maps and hence should not be allowed to appear in them as the first character of a key or datum. If the -f flag is used, yp_mkdb will reject any source line that starts with a ``+'' or ``-'' character and issue a warning message displaying the line that was dropped. -u dbname Dump (or 'unwind') an NIS database. This option can be used to inspect the contents of an existing NIS database. -i inputfile When generating an NIS map, encode inputfile as a special entry in the database with a key of YP_INPUT_FILE. -o outputfile When generating an NIS map, encode outputfile as a special entry in the database with a key of YP_OUTPUT_FILE. -d domainname When generating an NIS map, encode domainname as a special entry in the database with a key of YP_DOMAIN_NAME. -m mastername When generating an NIS map, encode mastername as a special entry in the database with a key of YP_MASTER_NAME. This entry in the database is frequently used by various NIS utilities to determine the name of an NIS master server for a domain. By default, yp_mkdb assumes that the local host is the NIS master; the -m option is used to override this default. FILES
/var/yp/Makefile the Makefile that calls yp_mkdb to build the NIS databases SEE ALSO
db(3), ypserv(8) AUTHORS
Bill Paul <wpaul@ctr.columbia.edu> BSD
March 12, 1996 BSD
All times are GMT -4. The time now is 01:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy