时间:2021-05-22
复制代码 代码如下:
#include"apue.h"
int userlogin(struct passwd **);
int main()
{
int ret,i=0;
long ret_cwd;
struct passwd *pw;
char buf[128],hostname[16],usercwd[128];
char *ptmp1;
do{
ret = userlogin(&pw);
}while(ret != 1);
getchar();
while(1){
//to gethostname
if(gethostname(buf,128)!=0){
perror("gethostname()");
return 0;
}
//truncate hostname untill '.'
while(buf[i]!='.'){
hostname[i++] = buf[i];
}
i = 0;
//if the user is 'root' the symbol is '#'
//else '$'
//and the current work path is truncated from the last '/' to the end
ret_cwd = (long)getcwd(usercwd,128);
if(strcmp(usercwd,pw->pw_dir)==0){
ret = sprintf(usercwd,"~\0",NULL);
}
else if(strcmp(usercwd,"/")!=0){
ptmp1 = strrchr(usercwd,'/');
sprintf(usercwd,"%s",ptmp1+1);
}
if(strcmp(pw->pw_name,"root")==0){
sprintf(buf,"*[%s@%s %s]# ",
pw->pw_name,hostname,usercwd);
}
else{
sprintf(buf,"*[%s@%s %s]$ ",
pw->pw_name,hostname,usercwd);
}
//command
ssize_t g_ret,len;
char *line = NULL,*s_ret,*ptr=NULL;
int con_cd=0;
fprintf(stderr,"%s",buf);
g_ret = getline(&line,&len,stdin);
line[strlen(line)-1] = '\0';
if(strcmp(line,"exit")==0){
exit(-1);
}
ptr = line;
s_ret = line;
system(line);
while(ptr!=NULL){
s_ret = (char *)strsep(&ptr," ");
if(strcmp(s_ret,"cd") == 0){
con_cd=1;
continue;
}
else if(con_cd == 1){
chdir(s_ret);
}
}
}
return 0;
}
//login function
int userlogin(struct passwd **pw)
{
char name[32],*passwd,*pret;
struct spwd *sp;
printf("login:");
fflush(stdout);
scanf("%s",name);
passwd = getpass("password:");
sp = getspnam(name);
if(sp == NULL){
fprintf(stdout,"no is user![%s]\n",name);
return 0;
}
pret = crypt(passwd,sp->sp_pwdp);
if(pret == NULL){
fprintf(stdout,"crypt(%s)\n",name);
return 0;
}
if(strcmp(pret,sp->sp_pwdp) == 0){
printf("login successful!\n");
}
else{
fprintf(stdout,"passwd is error!\n");
return 0;
}
*pw = getpwnam(name);
if(*pw == NULL){
printf("getpwnam(%s) error\n",name);
return 0;
}
return 1;
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
系统提供了用户之间通信的邮件系统,当用户打开终端注册登录时发现系统给出如下信息:复制代码代码如下:youhavemail.这时用户可通过键入mail命令读取信件
一.初识bashshell1.1启动shellGNUbashshell能提供对Linux系统的交互式访问。通常是在用户登录终端时启动,登录时系统启动shell依
这篇文章主要介绍了基于Java实现ssh命令登录主机执行shell命令过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要
需求批量实现自动发送公钥到远程主机环境firewalld:关闭selinux:关闭实现方式sshpass命令shell调用expect命令sshpass命令#!
本文实例讲述了python实现按行切分文本文件的方法。分享给大家供大家参考,具体如下:python脚本利用shell命令来实现文本的操作,这些命令大大减少了我们