![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to Zip the files from date Stamp to end date Stamp | redlotus72 | UNIX for Dummies Questions & Answers | 1 | 12-08-2006 06:29 PM |
| creating a new file with date stamp | mgirinath | Shell Programming and Scripting | 2 | 02-28-2006 12:00 PM |
| Inserting Date&Time Stamp In Existing Log File | shephardfamily | UNIX for Dummies Questions & Answers | 3 | 02-24-2006 04:01 AM |
| ftp copy: preserve source file date stamp | cassj | UNIX for Dummies Questions & Answers | 5 | 02-16-2005 06:38 PM |
| File date and time stamp | Xenon | UNIX for Dummies Questions & Answers | 1 | 10-09-2001 03:58 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Date Stamp on new file
Dear Gurus,
I'm trying to move a number of files from one directory to another directory with a new date stamp. This is my script: #! /bin/csh Today_Date=`date +%Y%M%D` mv /usr/TRS/data/TS* /usr/TRS/backup/TS*.${Today_Date} when i run the script i'm getting the following errors: mv: /usr/TRS/backup/TS*.20062309/08/06 not found Any advise? Thanks wee |
|
||||
|
Quote:
|
|
||||
|
Quote:
#! /bin/sh Today_Date=`date +%Y%m%d` mkdir /usr/TRS/backup/${Today_Date} mv /usr/TRS/data/T* /usr/TRS/backup/${Today_Date} so now i will create today's date as a directory and put all the files in. the question is how do i remove those directory when they are more than 10 days old? thanks again. ![]() |
|
||||
|
Quote:
|
![]() |
| Bookmarks |
| Tags |
| mtime |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|