$ cat -n sample.c 1 #include 2 main() 3 { 4 5 6 printf("Test\n"); 7 } $ cat -s sample.c #include main() { printf("Test\n"); } $ cat aa bb > cc $