Summary: I know this is quite simple stuff, but I'm not into this kind of programming... I have to set up a cron job that does the following 2 steps on a web s...
Summary: How do you find files, then copy the files into an existing directory. I am to find files starting with N which is not more than 10 days old, then cop...
Summary: Hi, I want to delete files which had been created 2 days ago having names like: er_n5412_output_yyyymmdd.csv.processd from the directory /opt/apps/cc...
Summary: I prefere to use x-windows. If you delete files then, the directory and the files go first into the bin. In that case they can be retrieved by clickin...
Summary: How do you find files, then copy the files into an existing directory. I am to find files starting with N which is not more than 10 days old, then cop...
Summary: Hi Jessica, depends on what you mean by two weeks ago. If you mena two weeks ago from the current date than you can use find /Directory -mtime +14 -ex...
Summary: Dear Friend , There is no possibility of regetting the deleted files.The best solution is we can change the functionality of rm to another command. ...
Summary: Hi there, I've got this problem: On my AIX-Machine runs an COBOL-Program wich has files open. Now one of these files are moved and compressed duri...
Summary: I need more help on removing the first line of my file. I have tried both suggestions but both of them seems to extract the 1st line of my old file an...
Summary: i have a directory "ABC" with lots of old files and sub directories in it. the issue now is i want to delete away files which are older than 15 days i...
Summary: I think this script is just doing what you want. for i in `ls | grep -v tmp` do if [ -f ${i} ] then echo ${i} cp ${i} testdir/${i}.nae fi done ...
Summary: It should. However, if it isn't working, copy the .profile to another file name, delete the old .profile, and rename the copy to .profile. If you hav...
Summary: I am trying to wite shell script and running into little trouble. I need to find a particular word in the file, then copy that file into a different ...
Summary: I found this looking around, maybe it will help. :) $ tar --list --file=collection.tar blues folk jazz rock practice/blues practice/folk practice/jazz...
Summary: Dear Gurus, How do i delete files in a directory, based on a captured text file listing. E.g. ls {dir} > logfile.log rm {files listed in logfile.log} ...
Summary: Hi, I will have to split a 4 MB file into four 1 MB files. But the problem here is the first line is a header and the last line is a trailer. In betwe...
Summary: I'm having trouble with cron skipping jobs on a Compaq Proliant 3000 with SCO 5.0.6. I have a batch jobs that run under cron at night. Some nights, ...
Summary: Hope I have posted this in the correct forum. I'm trying to recover some Oracle files from tape to setup an offsite recovery system. These files are n...
Summary: I have a file in Word named Con.Proc.Sup.doc. I can open it and all is fine. I can make changes and save it and I can save it as another name and I ...
Summary: hey, i am trying to write a bash script to backup recent files from a directory. it works well, except that it does not copy files whose names have br...
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: This script won't lose any appended data, but it is still possible to have the duplicated appended data. If these 3 files are log files, then the dupl...
Summary: Hi All, Could someone tell me whats wrong with this script? The script should read a file(the file contains path of files to archive),and then tar the...