#include <string.h> int main(int argc, char *argv[]) { char query[20]; strcat(query, "/bin/cat "); strcat(query, argv[1]); system(query); return 0; }