shell中pwd命令可以用,而我在usrFsLib.c中加如函数pwd1和pwd一样的,我的目的就是自己能过实现这个命令,以便更一不学习,函数如下:
void pwd1(void) { char name [MAX_FILENAME_LENGTH];
ioDefPathGet (name);/*set the current default path*/ printf ("%s\n", name); }
然后在usrLib.h加上extern void pwd1 (void);可是shell中还是说pwd1没有定义,而pwd命令却有,请问我要生成pwd1这个命令,还有其它的地方要改么?非常感谢