com_chdir.c

来自「ngspice又一个电子CAD仿真软件代码.功能更全」· C语言 代码 · 共 68 行

C
68
字号
/************** com_chdir.c* $Id: com_chdir.c,v 1.2 2005/05/30 20:28:30 sjborley Exp $************/#include <config.h>#include <ngspice.h>#include <wordlist.h>#ifdef HAVE_PWD_H#include <pwd.h>#endif#include "com_chdir.h"#include "quote.h"#include "streams.h"voidcom_chdir(wordlist *wl){    char *s;    struct passwd *pw;    char localbuf[257];    int copied = 0;    s = NULL;    if (wl == NULL) {	s = getenv("HOME");#ifdef HAVE_PWD_H	if (s == NULL) {	    pw = getpwuid(getuid());	    if (pw == NULL) {		fprintf(cp_err, "Can't get your password entry\n");		return;	    }           	    s = pw->pw_dir;	}#endif    } else {        s = cp_unquote(wl->wl_word);	copied = 1;    }    if (*s && chdir(s) == -1)        perror(s);    if (copied)	tfree(s);#ifdef HAVE_GETCWD    s = getcwd(localbuf, sizeof(localbuf));    if (s)	    printf("Current directory: %s\n", s);    else	    fprintf(cp_err, "Can't get current working directory.\n");#endif    return;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?