Skip to content
Snippets Groups Projects
  • kaashoek's avatar
    i/o redirection in sh · 8b58e810
    kaashoek authored
    better parsing of sh commands (copied from jos sh)
    cat: read from 1 if no args
    sbrk system call, but untested
    getpid system call
    moved locks in keyboard intr, but why do we get intr w. null characters from keyboard?
    8b58e810
echo.c 194 B
#include "types.h"
#include "stat.h"
#include "user.h"

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

  for(i = 1; i < argc; i++){
    puts(argv[i]);
    puts(" ");
  }
  puts("\n");
  exit();
}