Pregunta

I would like to print out the content of files in one directory. I want to see only the content of files that have been modified today. I tried this approach:

ls -lt | grep '6. Dez' | cat

Since it does not work, I am wondering what would be the correct way to do this?

¿Fue útil?

Solución

To get files modified within last day, you can use:

find . -mtime -1

Then you can print them all with

find . -mtime -1 -exec cat {} \;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top