Tar selected files based on file name

To include only a set of files with tar, you can use the following one liner. This example will tar all files with the java extension in the archive with the name test.


find . -name '*.java' | tar czvf test.tar.gz --files-from -

Source: http://www.computing.net/answers/linux/tar-up-key-files-by-extension/294...