ClickBank Products

How to capture C and CPP files in the linux operating system?

Q. I am new to linux and have been trying to figure this out forever for a homework assignment! I am supposed to use appropriate linux commands to capture all “C or CPP” files in the linux operating system and make a list of the files. I am using Xubuntu. I am a beginner and could use any advice! Thanks!

Related posts:

  1. What are the benefits of a Linux operating system?
  2. How Do I Set Up Linux As A Second Operating System?
  3. What Linux Operating System Is Best For A Home Audio And Video Recording System?

One Response to “How to capture C and CPP files in the linux operating system?”

  • Udi K -March 1, 2010 at 2:31 am


    What does it mean to capture a file??

    If you mean to find the files and list the results, use the ‘find’ command to search for *.c and *.cpp files in the whole system. You will get the result on the screen, and you can redirect the output to a file.

    To find *.c files:
    find / -name *.c

    To find *.cpp files:
    find / -name *.cpp

    Explanation: the “/” means to start the search at the top of the file system, meaning that the search will include all the system. The “-name” means to search by name, and “*.c” is the file pattern you want to find.

    To redirect the output, use “> output_file” for example:
    find / -name *.cpp > output_file

    Hope it helps. See the manual page ‘man find’ to learn more.

    VA:F [1.9.13_1145]
    Rating: 0 (from 0 votes)

Leave a Reply