# ./delete_file A binary that delete all files called in argument. ```c #include #include #include #include int main(int argc, char **argv) { char buf[PATH_MAX + 1]; while (argc > 0) { bzero(buf, PATH_MAX + 1); realpath(argv[argc--], buf); remove(buf); } return (0); } ```