home *** CD-ROM | disk | FTP | other *** search
- Patches to upgrade from Stuff 1.0 to Stuff 1.1
- (see "readme.too" for details).
-
- *** ../givehelp.c Wed Sep 21 23:13:14 1988
- --- givehelp.c Mon Oct 24 14:10:28 1988
- ***************
- *** 20,26
- #define printf infomsg
- #endif
- printf (
- ! "Stuff 1.0, a public domain file finder for use with zoo, by Rahul Dhesi\n"
- "Usage: stuff pathnames ... [ conditions ... ]\n\n"
-
- "\"Pathnames\" are filenames/directory names, MSDOS wildcards ok. Files are
- \n"
-
- --- 20,26 -----
- #define printf infomsg
- #endif
- printf (
- ! "Stuff 1.1, a public domain file finder for use with zoo, by Rahul Dhesi\n"
- "Usage: stuff pathnames ... [ conditions ... ]\n\n"
-
- "\"Pathnames\" are filenames/directory names, MSDOS wildcards ok. Files are
- \n"
- ***************
- *** 33,39
- "-mtime N modified N days ago (+N means over N, -N means less than N
- )\n"
- "-modified modified since last backup (tests \"archive\" bit)\n"
- "-older filename older than specified file (false if \"filename\" not found
- )\n"
- ! "-newer filename newer than specified file (true if \"filename\" not found)
- \n\n"
-
- "For example, to recursively list all files in /bin and /new whose name does
- \n"
- "not contain the letter X, and which have been modified in the last two days
- ,\n"
-
- --- 33,41 -----
- "-mtime N modified N days ago (+N means over N, -N means less than N
- )\n"
- "-modified modified since last backup (tests \"archive\" bit)\n"
- "-older filename older than specified file (false if \"filename\" not found
- )\n"
- ! "-newer filename newer than specified file (true if \"filename\" not found)
- \n"
- ! "-response file contents of file is interpreted as options (as on command
- line)\n"
- ! ", repeat last option, -name *.c -name *.h equals -name *.c ,
- *.h\n\n"
-
- "For example, to recursively list all files in /bin and /new whose name does
- \n"
- "not contain the letter X, and which have been modified in the last two days
- ,\n"
- ***************
- *** 40,45
- "and which are no more than 8 kilobytes in size, excluding all files in the\
- n"
- "/bin/scratch subdirectory, the command is:\n\n"
- " stuff /bin /new ! -name *X* -mtime -3 -size -9 ! -name /bin/scratch*\n"
- );
- }
- #undef printf
-
- --- 42,50 -----
- "and which are no more than 8 kilobytes in size, excluding all files in the\
- n"
- "/bin/scratch subdirectory, the command is:\n\n"
- " stuff /bin /new ! -name *X* -mtime -3 -size -9 ! -name /bin/scratch*\n"
- + "or:\n"
- + " stuff /bin /new -response names mtime -3 -size -9\n"
- + "where the file names contains \"! -name *X* , /bin/scratch*\"\n"
- );
- }
- #undef printf
-