shell脚本运行时,出现这样的提示是什么意思
谁能告诉我是什么意思呀?
谁能告诉我是什么意思呀?
2016-11-14
#!/bin/dash
/*a simple shell*/
/* use command 'leave' to exit*/
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
#define BUFFERSIZE 80
extern char *get_current_dir_name(void);
extern char *getenv(const char *name);
extern pid_t waitpid(pid_t pid, int *status, int options);
char buffer[BUFFERSIZE+1];
举报