Summary: Hi, i have ksh script to fetch the data from oracle database and store the output in a .xls or .csv file. But the output having more then 70,000 rows....
Summary: Hi there, I have a program which will write some log information to a log file. The problem is this log file grows too fast. But the log information i...
Summary: Hi, How to convert a text file (which is tab delimited) into an .xls file. in unix scripting. I tired renaming the extension of .txt into .xls. It see...
Summary: Hello, how do i get the last field Ex: files are with this formats abc_xyz_20041232 abc_20041001 abbc_xyz_rrr_20041013 i tried with cut command but i ...
Summary: Hi Gurus Can you please share your ideas in configuring the .profile file and the $HOME directory. You might be following different techniques that ar...
Summary: Hi, I would like to know how to convert a text file in UNIX to HTML using awk? For example, my file has the following contents : Name Age A 23...
Summary: Hi I need to get the name (only name) of the last updated file or directory in an existing folder and store it in a variable. Thanks in advance. ...
Summary: Hello, I tried to create a tar file in zip format as following:- [thomas@localhost assignment_3]$ tar -cvfz ass3.tgz * tar: ass3.tgz: Cannot stat: No ...
Summary: Hi how to map the remote system J drive to the local machine. on that i am running my project on unix enviroment on console mode. it uses the jar file...
Summary: I m new to unix command, can everyone guide me for below scenario. I need to copy the files in temp folder and replace it in test folder. Before overw...
Summary: Firstly, I assume you don't want to see the output from the grep? So you want to add the following to the end... >/dev/null -- sends output to nowhere...
Summary: I am a complete Linux RedHat 6 (well all Linux versions really!) novice. I know little to nothing about it. At the moment i can only see about 1/4 o...
Summary: awk will work on all lines of a file by default, or you can use a regular expression and have it only act on matching (or non-matching) lines. e.g: $ ...
Summary: I don't think you can generate an xls file from unix. You spool a flat file and the file name should have .csv (comma delimited). Also, each columns ...
Summary: Hi, Im practicing unix in uwin software(AT&T Unix version) and I've already familiarized myself with the basic commands. However,I have no idea ho...
Summary: Hi All, i have two text files (temp.txt and temp1.txt) like this temp.txt has three columns col11 col12 col13 temp1.txt has four columns col21 col2...
Summary: How do i read binary files in Unix and as i know that counting the number of records in a file could be done using WC command, but how to use it for c...
Summary: If the data in your file is in this format: /dir/dir/dir/filename /dir/dir/filename /dir/filename while read line do basename $line done < datafile...
Summary: Hi Folks, I am working on Oracle APPS and new to shell script. I need to write a shell script to find the oldest file (based on naming convention dat...
Summary: Hi all, I have written one shell script. The output file of this script is having sql output. In that file, I want to extract the rows which are havin...
Summary: I want to send an attachment in a mail, in a unix script mail -s "subject" user@outlook How can i attach a file in the e-mail. Any advice will be gre...