Changeset 8d07f267 in mainline for uspace/app/bdsh/cmds


Ignore:
Timestamp:
2020-11-04T20:22:25Z (5 years ago)
Author:
parth-27 <parth1020patel@…>
Parents:
0564ee47
Message:

grep command added

Location:
uspace/app/bdsh/cmds/modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/clear/clear.c

    r0564ee47 r8d07f267  
    2929
    3030        /* Count the arguments */
    31         for (argc = 0; argv[argc] != NULL; argc++)
    32                 ;
     31        for (argc = 0; argv[argc] != NULL; argc++);
    3332
    3433        // printf("%s %s\n", TEST_ANNOUNCE, cmdname);
  • uspace/app/bdsh/cmds/modules/modules.c

    r0564ee47 r8d07f267  
    6565#include "alias/entry.h"
    6666#include "unalias/entry.h"
     67#include "clear/entry.h"
     68#include "basename/entry.h"
     69#include "grep/entry.h"
    6770
    6871/*
     
    9295#include "alias/alias_def.inc"
    9396#include "unalias/unalias_def.inc"
     97#include "clear/clear_def.inc"
     98#include "basename/basename_def.inc"
     99#include "grep/grep_def.inc"
    94100
    95101        { NULL, NULL, NULL, NULL }
Note: See TracChangeset for help on using the changeset viewer.