41 lines
735 B
C
41 lines
735 B
C
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <unistd.h>
|
|
|
|
int main(const int argc, const char **argv) {
|
|
int i;
|
|
for (i = 1; i < argc; i++) {
|
|
if (argv[i][0] != '-')
|
|
break;
|
|
|
|
else if (!strcmp(argv[i], "--help")) {
|
|
printf("hostname [hostname Set new hostname]\n");
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
/* Set hostname */
|
|
if (argc - i == 1) {
|
|
if (sethostname(argv[argc - 1], strlen(argv[argc - 1])) < 0) {
|
|
fprintf(stderr, "hostname: %s\n", strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Get info */
|
|
char hostname[HOST_NAME_MAX + 1];
|
|
if (gethostname(hostname, sizeof(hostname)) < 0) {
|
|
fprintf(stderr, "hostname: %s\n", strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
|
|
puts(hostname);
|
|
return 0;
|
|
}
|