xv6-65oo2/user/ln.c

16 lines
287 B
C
Raw Normal View History

#include "kernel/types.h"
#include "kernel/stat.h"
#include "user/user.h"
2007-08-22 05:54:55 +00:00
int
main(int argc, char *argv[])
{
if(argc != 3){
2019-08-27 17:13:03 +00:00
fprintf(2, "Usage: ln old new\n");
2019-09-11 14:04:40 +00:00
exit(1);
2007-08-22 05:54:55 +00:00
}
if(link(argv[1], argv[2]) < 0)
2019-08-27 17:13:03 +00:00
fprintf(2, "link %s %s: failed\n", argv[1], argv[2]);
exit(0);
2007-08-22 05:54:55 +00:00
}