Ignore:
Timestamp:
Nov 1, 2006, 7:46:51 PM (17 years ago)
Author:
Bruno Cornec
Message:
Further removal of all instances of grep -wx in code.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/mondorestore/mondo-restore.c

    r818 r911  
    31063106    fatal_error("This will fail");
    31073107    sprintf(command,
    3108             "grep -x \"%s.*\" %s > %s",
     3108            "grep -E '^%s.*$' %s > %s",
    31093109            restore_this_directory, g_filelist_full, g_filelist_full);
    31103110    if (system(command)) {
     
    31163116    fatal_error("This will fail");
    31173117    sprintf(command,
    3118             "grep -x \"%s.*\" %s > %s",
     3118            "grep -E '^%s.*$' %s > %s",
    31193119            restore_this_directory, g_biggielist_txt, g_biggielist_txt);
    31203120    if (system(command)) {
Note: See TracChangeset for help on using the changeset viewer.