Skip to content
Snippets Groups Projects
  • rsc's avatar
    · 1b789e1d
    rsc authored
    Remove puts in favor of printf.
    Allow multiple arguments to ls.
    1b789e1d
echo.c 198 B
#include "types.h"
#include "stat.h"
#include "user.h"

int
main(int argc, char *argv[])
{
  int i;

  for(i = 1; i < argc; i++)
    printf(1, "%s%s", argv[i], i+1 < argc ? " " : "\n");
  exit();
}