2

I am using a command line application which creates a great amount of intermediate artifacts to the file system and then at some point deletes them.

On environments where storage space is constrained this can pose a problem.

I'd like to know if there's a tool which would allow me to run the application under and then summarise the changes that were done to the filesystem when it terminates (mainly amount of created/deleted files and their sizes).

Rui F Ribeiro
  • 55,929
  • 26
  • 146
  • 227
carlossless
  • 243
  • 1
  • 2
  • 6

1 Answers1

3

Any useful tool in this area is going to require some learning effort. The usual approach is auditing, which OSX provides:

Other tools can be useful:

But ultimately, the responses to this question will be based on the responder's familiarity with certain tools.

Thomas Dickey
  • 75,040
  • 9
  • 171
  • 268