Monitor changing files in real time - Linux Command
by Sanju[ Edit ] 2012-07-03 12:43:02
Monitor changing files in real time - Linux Command
This command is fairly useful to watch your file system as it changes. It is more useful in just watching where changing files and percentages of drive space are critical. The command uses
watch,
df, and
ls like so:
watch -d -n 2 'df; ls -FIAt;'
The above command will refresh every 2 seconds and show you what is being changed on your file system.