1

There is a tar file which was created few days before, this tar file was created on the /files directory.

And now /files directory has new files uploaded in it.

My question is how to create another files with only the new files uploaded.

Thanks..

Hulk
  • 391
  • 1
  • 6
  • 17

1 Answers1

2

Sounds to me like you want to do a incremental backup (Also look at differential to see if that is what you want). Here is good tutorial on how to do incremental backups with tar.

If you want just a diff, than use the -d switch (at least with GNU tar):

-d, --diff, --compare
              find differences between archive and file system

So for example tar -df foo.tar *

Kyle Brandt
  • 83,619
  • 74
  • 305
  • 448
  • 2
    Unfortunately `--diff` only compares against files already in the archive, so new files in the directory will not be listed. – davidA Jun 06 '18 at 00:35