Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tail-like continuous ls (file list)

Tags:

I am monitoring the new files created in a folder in linux. Every now and then I issue an "ls -ltr" in it. But I wish there was a program/script that would automatically print it, and only the latest entries. I did a short while loop to list it, but it would repeat the entries that were not new and it would keep my screen rolling up when there were no new files. I've learned about "watch", which does show what I want and refreshes every N seconds, but I don't want a ncurses interface, I'm looking for something like tail:

  • continuous
  • shows only the new stuff
  • prints in my terminal, so I can run it in the background and do other things and see the output every now and then getting mixed with whatever I'm doing :D

Summarizing: get the input, compare to a previous input, output only what is new. Something that do that doesn't sound like such an odd tool, I can see it being used for other situations also, so I would expect it to already exist, but I couldn't find anything. Suggestions?

like image 214
msb Avatar asked Sep 05 '13 20:09

msb


People also ask

How do you tail a file continuously?

The tail command is fast and simple. But if you want more than just following a file (e.g., scrolling and searching), then less may be the command for you. Press Shift-F. This will take you to the end of the file, and continuously display new contents.

How do I find last 10 modified files in Linux?

Finding Files Modified on a Specific Date in Linux: You can use the ls command to list files including their modification date by adding the -lt flag as shown in the example below. The flag -l is used to format the output as a log. The flag -t is used to list last modified files, newer first.

How do I show a long list in Linux?

The -l option signifies the long list format. This shows a lot more information presented to the user than the standard command. You will see the file permissions, the number of links, owner name, owner group, file size, time of last modification, and the file or directory name.


2 Answers

You can use the very handy command watch

watch -n 10 "ls -ltr"

And you will get a ls every 10 seconds.

And if you add a tail -10 you will only get the 10 newest.

watch -n 10 "ls -ltr|tail -10" 
like image 69
opentokix Avatar answered Sep 18 '22 12:09

opentokix


If you have access to inotifywait (available from the inotify-tools package if you are on Debian/Ubuntu) you could write a script like this:

#!/bin/bash

WATCH=/tmp

inotifywait -q -m -e create --format %f $WATCH | while read event
do
    ls -ltr $WATCH/$event
done

This is a one-liner that won't give you the same information that ls does, but it will print out the filename:

inotifywait -q -m -e create --format %w%f /some/directory
like image 21
Sean Bright Avatar answered Sep 19 '22 12:09

Sean Bright