Initial revision

This commit is contained in:
Eric Andersen
1999-10-05 16:24:54 +00:00
commit cc8ed39b24
113 changed files with 24504 additions and 0 deletions

18
coreutils/pwd.c Normal file
View File

@@ -0,0 +1,18 @@
#include "internal.h"
#include <stdio.h>
const char pwd_usage[] = "Print the current directory.\n";
extern int
pwd_main(struct FileInfo * i, int argc, char * * argv)
{
char buf[1024];
if ( getcwd(buf, sizeof(buf)) == NULL ) {
name_and_error("get working directory");
return 1;
}
printf("%s\n", buf);
return 0;
}