Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Find, copy and move into directory
Name: Neo Date: January 19, 2003 at 11:54:52 Pacific OS: Unix CPU/Ram: Unix
Comment:
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 copy the N files into an existing N directory. All in single command. The problem now is I don't know how to move the files into an existing directory.
find t* -mtime -10
Directory is users/students/280501/kl004358/cprogram/N
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 copy the N files into an existing N directory. All in...
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 server: 1: Delete BFile*.htm located in /www/FileDi...
Summary: Hi, I'm trying to use a combination of find -exec and grep with little success. Basically, I need a script to search for files modified within the last day that match a certain filenaming pattern. I...