script & Excel help needed


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers script & Excel help needed
# 8  
Old 07-27-2007
As I am still not 100% clear on your specification, here is a
light at the end of the tunel:
Code:
egrep 'Real Value' input_file | \
while read mLine
do
  mFld1=`echo $mLine | cut -d'|' -f1`
  mFld2=`echo $mLine | cut -d'|' -f2`
  mFld3=`echo $mLine | cut -d'|' -f3`
  .... so on with the fields you want to extract ....
  echo $mFld1'|'$mFld2'|'$mFld3
done

# 9  
Old 07-27-2007
Computer

Thanks Shell_Life for your help.
First: i'm not sure about "while read mLine" as it's not defined, so the script doesn't return any values.
Second: you did what i'm looking for by extracting the line first then from that line extract the fields that i need.
The only thing is how to export the data into Excel Sheet?
# 10  
Old 07-27-2007
So lines that have the string "Real Value" should be extracted from the log file

awk '/Real Value/ { print }' logfile > to_be_exported_file

Now this file should be opened in excel application with ' | ' as the delimiter.

Is that what you are looking for ?
# 11  
Old 07-27-2007
Hi matrixmadhan;

Not exactly; from the line i extract i need to get only a few fields, then take these fields & export them to an Excel Sheet
# 12  
Old 07-27-2007
Quote:
Originally Posted by moe2266
Hi matrixmadhan;

Not exactly; from the line i extract i need to get only a few fields, then take these fields & export them to an Excel Sheet
Cool,

requirement is getting precised now Smilie

If you are interested in fields 1 , 4, 5

Code:
awk -F"|" '/Real value/ { print $1, $4, $5 }' sourcefile > destfile

and the rest - exporting and opening remains the same
# 13  
Old 07-27-2007
Computer

Thanks, but is there a way to export directly to Excel sheet?
If yes or no, i'm not sure how though?
# 14  
Old 07-27-2007
Quote:
Originally Posted by moe2266
Thanks, but is there a way to export directly to Excel sheet?
If yes or no, i'm not sure how though?

I don't understand this properly though,

what do you mean by directly exporting this ?

extract the required fields from the log file and directly export into excel without a intermediate file, something like that ?
Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SFTP Shell Script Get & Delete && Upload & Delete

Hi All, Do you have any sample script, - auto get file from SFTP remote server and delete file in remove server after downloaded. - only download specify filename - auto upload file from local to SFTP remote server and delete local folder file after uploaded - only upload specify filename ... (3 Replies)
Discussion started by: weesiong
3 Replies

2. Shell Programming and Scripting

Script needed to delete to the list of files in a directory based on last created & delete them

Hi My directory structure is as below. dir1, dir2, dir3 I have the list of files to be deleted in the below path as below. /staging/retain_for_2years/Cleanup/log $ ls -lrt total 0 drwxr-xr-x 2 nobody nobody 256 Mar 01 16:15 01-MAR-2015_SPDBS2 drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: prasadn
2 Replies

3. Shell Programming and Scripting

Script to generate Excel file or to SQL output data to Excel format/tabular format

Hi , i am generating some data by firing sql query with connecting to the database by my solaris box. The below one should be the header line of my excel ,here its coming in separate row. TO_CHAR(C. CURR_EMP_NO ---------- --------------- LST_NM... (6 Replies)
Discussion started by: dani1234
6 Replies

4. Shell Programming and Scripting

Perl script to Merge contents of 2 different excel files in a single excel file

All, I have an excel sheet Excel1.xls that has some entries. I have one more excel sheet Excel2.xls that has entries only in those cells which are blank in Excel1.xls These may be in different workbooks. They are totally independent made by 2 different users. I have placed them in a... (1 Reply)
Discussion started by: Anamika08
1 Replies

5. Shell Programming and Scripting

Help Needed with grep & sed

On one of my servers, it appears that a bunch of html files got the following code added to it... I was going to try to remove this line using grep & sed... as sample grep -lr -e 'apples' *.html | xargs sed -i 's/apples/oranges/g' I can get the grep portion to work... grep "<script... (7 Replies)
Discussion started by: djlane
7 Replies

6. Shell Programming and Scripting

Help needed in Curl & Wget

We are trying to invoke a https service from our unix script using curl command. The service is not getting invoked because it is SSL configured. Bypassing certification (using curl –k) does not work. curl -k https://site curl -k -x IP:Port https://site curl -k -x IP:443 https://id:pwd@site ... (0 Replies)
Discussion started by: dineshbabu01
0 Replies

7. Linux

Squid upgrade & run help needed

dear frnds, i m very new linux environment & is looking to deploy squid proxy server using Fedora 9. but i do not know anything abt all this. i have installed fedora in default mode & it has squid already installed. now i want to upgrade the squid to current version. i tried to use yum to... (2 Replies)
Discussion started by: ondemandemails
2 Replies

8. Shell Programming and Scripting

Help needed to combine files to excel sheet

Hi, I have several hundreds of text files which I would like to combine them onto excel sheet. Does anyone know how to combine them into different excel sheet in one workbook using Bash script? Please advise. THanks. I forgot to mention my file is something like below:- A B ... (5 Replies)
Discussion started by: ahjiefreak
5 Replies

9. AIX

Problem with NFS & rpc.lockd-Help Needed

We have windows clients that access drawing files shared from our AIX server using NFS. The Windows clients are intermittently unable to open files or access the system. For some reason restarting the rpc.lockd temporarily resolves the problem. However, that is the only clue I have to what the... (1 Reply)
Discussion started by: theologic
1 Replies

10. Shell Programming and Scripting

Extract directories, users, groups & permissions to excel

Hi As the title descibes I wish to create an excel spreadsheet which lists all directories in full allong with the users, groups and rights. I have not used Perl scripts before so I'm a little lost on this on. Cheers (0 Replies)
Discussion started by: MacLon
0 Replies
Login or Register to Ask a Question