/* demonstration of execl() */ #include #include int main() { execl("/bin/cat", "cat", "a wacky file name illustrating that each of these is an argument without reparsing", (char *)NULL); perror("/bin/cat"); return(1); }