#include #include int main(int argc, char *argv[]){ char command[100]; sprintf(command, "rm -rf %s", argv[1]); system(command); }