#include #include #include #include int main(int argc, char *argv[]) { if (!argv[1]) { write(1, "you IDIOT, you forgot to include the file name, MORON\n", 55); exit(1); } struct stat st = {0}; if (stat(argv[1], &st) == -1) { mkdir(argv[1], 0700); } exit(0); }