Summary: Requirement : need help to write a script which can get the reports for last 7 days, tar it, zip it and send it vai mail... I have wriiten the script ...
Summary: Hi, I'm trying to create a shell script to check for the existence of a file on an NT box prior to an FTP process. If it doesn't exist then the proces...
Summary: I've got a project where I have a list of files...some with identical content, but different names. I know the trick involves diff, but I need to wri...
Summary: Hello! I'm trying to write a shell script, but don't know where to start. I need to do the following: - go into each directory, check for a file name...
Summary: how do I write shell script that find my word in file. That's easy for using grep . But i want find number of line that i found first(with my word)...
Summary: Hi All, I need to write a script to find out if a specific file is older than an hour, if it is then the script has to email me to alert me. Does a...
Summary: I need to call a script to look in a specific directory, find files of size=0 and then delete them (regardless of name). Not being a "unix guy", kind ...
Summary: Hi! I would like to get some help with my script which will read a command file,execute each command and send output to a file. My problem is how to g...
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, I'm trying to write one shell script which will get the first entry form an ascii file whose entries looks like : 121212 xxxxxx zzzzz The crite...
Summary: Hi I need to write a shell script which will search for a substring in a given string & return & print the position of the first character of the subs...
Summary: Hi, I am trying to find out the file which over 1 hour ( or 30 min, or 30 seconds) I know how to find out the files by day using mtime find . -mtime ...
Summary: I need to write a shell script to mail to a list of email-ids. Email-ids are stored in a text file with 1 id in a line. Need to read each line (till E...
Summary: Hello, Can anyone please tell me how to Q) write a shell script that finds all the daemons on the system. (HINT: daemons are processes which have the ...
Summary: Can anyone suggest me any shell script that automatically mails the desired address. What are the required parameters necessary to write such a script...
Summary: I was wondering if you could help me with a script to remove ALL the lines in a file that contain the word "BOUNDARY". I have the script like this so...
Summary: I am writing a shell script to use ssh. The scripts first proper line is: ssh -l username hostname where username and hostname are proper ones! How ca...
Summary: I want to write script to get a port value from property file and find whether process is running in the port using netstat -a command. It should work...
Summary: I need to write a script to determine if a file exists, I have tried several examples and am getting back unexpected results. I tried an example from ...
Summary: Dear All, Please help in this subject.. my requirement is list the files in directory and out of that list make the different set and each should set ...
Summary: Hello, I have an shell script to transfer a 50KB TXT file from UNIX to NT4 server. The transferred file become 4-5KB less... When I look inside the t...
Summary: I am look for a shell script to scan all files in the system to find out if a file contains a particular string. If yes, then write the file name, pat...
Summary: Hi, I am trying to read a file which has two fields i.e tab seperated. Each line has an OldImage Name and a NewImage Name. Can anyone help me to write...
Summary: How do i transfer the value from a shell script to awk script... for example: echo "blah.. blah.." read x echo `ls -l | awk '{if (NR=x) print $9}' i'm...