Re: script using file dates

2007-09-06 Thread Bob Proulx
marquis wrote: > > I'm looking for an exisiting script, or a command to help w/ > > processing files by date. I have a test website and need to > > upload only the files that have been changed since the last > > upload. I'm thinking of creating a file list and the date of the > > last upload. if

RE: script using file dates

2007-09-05 Thread marquis
TMP=`ls -Aa` ; for x in $TMP ; do echo -n "$x - " ; stat $x | tac | head -1 ; echo "" ; done > I'm looking for an exisiting script, or a command to help w/ processing > files > by date. I have a test website and need to upload only the files that > have > been changed since the last upload. I'm

Re: script using file dates

2007-08-15 Thread Bob Proulx
warnockm wrote: > I'm looking for an exisiting script, or a command to help w/ processing files > by date. I have a test website and need to upload only the files that have > been changed since the last upload. This sounds like the perfect application for use of rsync. > I'm thinking of creating