我正在做的是引入主机名和用户名,主机名可以是 255 个字符,不能以数字结尾,只能包含字母、数字和“-”和“.”。我希望只有字符的用户名。然后我想使用 system() 命令输出这些以在终端中运行它并登录。
示例输入:
someserver.com
马特
并且系统命令会使用finger登录
我需要一点帮助的问题是为“-”和“。”抛出异常。使用主机名和我的 if 循环检查用户验证总是无效的。使用该系统,如果有人有一个例子,我将不胜感激
#include <iostream>
#include <string>
#include <cctype>
#include <cstdlib>
#include <stdio.h>
#include <ctype.h>
int main()
{
printf("Enter your Host Name; it must be characters and not more than 255");
char hostName[254];
int len2;
fgets(hostName, sizeof(hostName), stdin);
rewind (stdin);
len2 = strlen(hostName);
if(hostName[len2-1] == '\n') hostName[--len2] = '\0';
if(len2 >254 ||!isalpha(hostName[len2-1]))
{
printf("Invalid Host Name");
}
printf("Enter your User Name; it must be characters and not more than 20");
char userName[19];
int len;
fgets(userName, sizeof(userName), stdin);
rewind (stdin);
len = strlen(userName);
if(userName[len-1] == '\n') userName[--len] = '\0';
if(len >19 || !isalpha(userName[19]))
{
printf("Invalid User Name");
}
//Use system to output the command
// printf("/usr/bin/ssh'hostname/usr/bin/finger'username" );
return 0;
}