Sponsored Content
Top Forums Shell Programming and Scripting Help with datafile parsing and creating spreadsheet Post 302632249 by yifangt on Sunday 29th of April 2012 04:28:31 PM
Old 04-29-2012
Re: transpose the matrix

Then this is not a story to transpose the matrix and more complicated as the course number for the students may be different. And your output wants to combine every two original cols tagged with the course name.
Code:
TEMP, STUDENT1 A,something,Morething
TEMP, STUDENT1 B,anything,Morestuff
TEMP, STUDENT1 C,goodthing,Morebla
TEMP, STUDENT1 D,goodthing,Morebla2
TEMP, STUDENT2 A,something,Morething
TEMP, STUDENT2 B,anything,Morestuff
TEMP, STUDENT2 D,thing2,Morebla2

It seems to me you transfer the normalised table to an irregular one. Right?
Code:
      STUDENT1                              STUDENT2
A:something   A:Morething              A:something   A:Morething
B:anything    B:Morestuff              B:anything    B:Morestuff
C:goodthing   C:Morebla                D:thing2      D:Morebla2
D:goodthing2  D:Morebla2

Not a good way for your next processing, if you have. Probably you need think over what you really want.

Last edited by yifangt; 04-29-2012 at 05:39 PM.. Reason: Prune to make it better.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

replace one section in a datafile

Hi: First, this is not a homework problem. I just need enough of a hint to get this going... My datafile (dataf.in) is made up of 10 sections. Each section begins with & and with && So it looks like this:------------------------------------- &section1 ...etc... && &section2 ...etc...... (4 Replies)
Discussion started by: Paprika
4 Replies

2. Solaris

oracle datafile *dbf

Hi ,,,, I have move an oracle db from old server to a new server ( solaris 5.9 is the operating system ) my problem is that to new server the datafile ( *.dbf ) are in a different path ..... example old : /export/home/data/blobs ........... new /oracle/data/blobs....... how i can... (3 Replies)
Discussion started by: tt155
3 Replies

3. Shell Programming and Scripting

selective positions from a datafile

Hi dear friends, Im writing a shell script which has to select the strings based on the position. but the problem is there is no field seperator. Normally a datafile contains 2000 records (lines) and each line is of size 500 charecters. I want to select the fields from all the lines which... (10 Replies)
Discussion started by: ganapati
10 Replies

4. UNIX for Dummies Questions & Answers

Append filename to datafile

I am working on an shell script which checks for all the file starting with abc*.* and if file found then the filelines need to append the file name in begining can some one help with the filename appending... for i in `ls $filename*.csv` do echo $i --- NEED to append file name befor... (3 Replies)
Discussion started by: Satyagiri
3 Replies

5. Shell Programming and Scripting

Combine a datafile with Master datafile, emergent!

Hi guys, my supervisor has asked me to solve the problem in 7 days, I've taken 3 days to think about it but couldn't figure out any idea. Please give me some thoughts with the following problem, I have index.database that has only index date: 1994 1995 1996 1997 1998 1999 I have... (6 Replies)
Discussion started by: onthetopo
6 Replies

6. UNIX for Advanced & Expert Users

How do we know which processis creating a datafile

Hi, Is there any way we can find out which process is creating a partucular datafile.I know the user and group but i am just curios to know is there any way to find the process. Thanks (7 Replies)
Discussion started by: ukatru
7 Replies

7. Shell Programming and Scripting

sorting the datafile in an order given in second datafile

Hi, I have two files: first input file is having 7-8 columns, and second data file is like I want to arrange my datafile1 in the order given in second data file, by comparing the seconddatafile with the second column of first file and print the entire line....also if any... (2 Replies)
Discussion started by: CAch
2 Replies

8. Shell Programming and Scripting

Parsing with Name value pair and creating a normalized file

I have url string as follows and I need to parse the name value pair into fields /rows event_id date time payload 1329130951 20120214 22.30.40... (1 Reply)
Discussion started by: smee
1 Replies

9. Shell Programming and Scripting

Validating a datafile with the datatypes

I have two input files 1)datafile 2)metadata file. I have a metadata file like: field1datatypeformat1number2string3dateyy-mm-dd I have a data file like: 1234abc12-8-16 xyz234512-9-163456acd14-08-12 In the first row there is no correction as everything is inline with the metadata.... (3 Replies)
Discussion started by: bikky6
3 Replies

10. Shell Programming and Scripting

Parsing a log file and creating a report script

The log file is huge and lot of information, i would like to parse and make a report . below is the log file looks like: REPORT DATE: Mon Aug 10 04:16:17 CDT 2017 SYSTEN VER: v1.3.0.9 TERMINAL TYPE: prod SYSTEM: nb11cu51 UPTIME: 04:16AM up 182 days 57 mins min MODEL, TYPE, and SN:... (8 Replies)
Discussion started by: amir07
8 Replies
CONFIG(5)							      OpenSSL								 CONFIG(5)

NAME
config - OpenSSL CONF library configuration files DESCRIPTION
The OpenSSL CONF library can be used to read configuration files. It is used for the OpenSSL master configuration file openssl.cnf and in a few other places like SPKAC files and certificate extension files for the x509 utility. A configuration file is divided into a number of sections. Each section starts with a line [ section_name ] and ends when a new section is started or end of file is reached. A section name can consist of alphanumeric characters and underscores. The first section of a configuration file is special and is referred to as the default section this is usually unnamed and is from the start of file until the first named section. When a name is being looked up it is first looked up in a named section (if any) and then the default section. The environment is mapped onto a section called ENV. Comments can be included by preceding them with the # character Each section in a configuration file consists of a number of name and value pairs of the form name=value The name string can contain any alphanumeric characters as well as a few punctuation symbols such as . , ; and _. The value string consists of the string following the = character until end of line with any leading and trailing white space removed. The value string undergoes variable expansion. This can be done by including the form $var or ${var}: this will substitute the value of the named variable in the current section. It is also possible to substitute a value from another section using the syntax $section::name or ${section::name}. By using the form $ENV::name environment variables can be substituted. It is also possible to assign values to environ- ment variables by using the name ENV::name, this will work if the program looks up environment variables using the CONF library instead of calling getenv() directly. It is possible to escape certain characters by using any kind of quote or the character. By making the last character of a line a a value string can be spread across multiple lines. In addition the sequences , ,  and are recognized. NOTES
If a configuration file attempts to expand a variable that doesn't exist then an error is flagged and the file will not load. This can hap- pen if an attempt is made to expand an environment variable that doesn't exist. For example the default OpenSSL master configuration file used the value of HOME which may not be defined on non Unix systems. This can be worked around by including a default section to provide a default value: then if the environment lookup fails the default value will be used instead. For this to work properly the default value must be defined earlier in the configuration file than the expansion. See the EXAMPLES section for an example of how to do this. If the same variable exists in the same section then all but the last value will be silently ignored. In certain circumstances such as with DNs the same field may occur multiple times. This is usually worked around by ignoring any characters before an initial . e.g. 1.OU="My first OU" 2.OU="My Second OU" EXAMPLES
Here is a sample configuration file using some of the features mentioned above. # This is the default section. HOME=/temp RANDFILE= ${ENV::HOME}/.rnd configdir=$ENV::HOME/config [ section_one ] # We are now in section one. # Quotes permit leading and trailing whitespace any = " any variable name " other = A string that can cover several lines by including \ characters message = Hello World [ section_two ] greeting = $section_one::message This next example shows how to expand environment variables safely. Suppose you want a variable called tmpfile to refer to a temporary filename. The directory it is placed in can determined by the the TEMP or TMP environment variables but they may not be set to any value at all. If you just include the environment variable names and the vari- able doesn't exist then this will cause an error when an attempt is made to load the configuration file. By making use of the default sec- tion both values can be looked up with TEMP taking priority and /tmp used if neither is defined: TMP=/tmp # The above value is used if TMP isn't in the environment TEMP=$ENV::TMP # The above value is used if TEMP isn't in the environment tmpfile=${ENV::TEMP}/tmp.filename BUGS
Currently there is no way to include characters using the octal nn form. Strings are all null terminated so nulls cannot form part of the value. The escaping isn't quite right: if you want to use sequences like you can't use any quote escaping on the same line. Files are loaded in a single pass. This means that an variable expansion will only work if the variables referenced are defined earlier in the file. SEE ALSO
x509(1), req(1), ca(1) 0.9.7a 2000-02-03 CONFIG(5)
All times are GMT -4. The time now is 06:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy