Searched refs:shellpath (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/heimdal/appl/ftp/ftp/ |
H A D | cmds.c | 1240 char shellnam[40], *shellpath, *namep; in shell() local 1250 shellpath = getenv("SHELL"); in shell() 1251 if (shellpath == NULL) in shell() 1252 shellpath = _PATH_BSHELL; in shell() 1253 namep = strrchr(shellpath, '/'); in shell() 1255 namep = shellpath; in shell() 1261 printf ("%s\n", shellpath); in shell() 1265 execl(shellpath,shellnam,"-c",altarg,(char *)0); in shell() 1268 execl(shellpath,shellnam,(char *)0); in shell() 1270 warn("%s", shellpath); in shell()
|
/freebsd/usr.sbin/pw/tests/ |
H A D | pw-modified.conf | 33 shellpath = "/bin"
|
H A D | pw.conf | 33 shellpath = "/bin"
|
/freebsd/usr.sbin/pw/ |
H A D | pw_user.c | 436 static char shellpath[256]; in shell_path() local 439 snprintf(shellpath, sizeof(shellpath), "%s/%s", p, sh); in shell_path() 440 if (access(shellpath, X_OK) == 0) in shell_path() 441 return shellpath; in shell_path() 444 snprintf(shellpath, sizeof(shellpath), "%s/%s", p, shells[i]); in shell_path() 445 if (access(shellpath, X_OK) == 0) in shell_path() 446 return shellpath; in shell_path()
|