Hallo Rene,
On Sun, Jul 13, 2014 at 00:03:54 +0200, Rene Thiel wrote:
touch --date "2014-04-19" /tmp/start find /srv/www/vhosts/domain.de -type f -name "*.php" -newer /tmp/start > /tmp/vhosts_2014-04-19.txt
Ergebnis:
/srv/www/vhosts/domain.de/httpdocs/w45184090n.php
Ich hätte jedoch gern folgendes Ergebnis:
2014-06-30 20:30[1] /srv/www/vhosts/domain.de/httpdocs/w45184090n.php
Falls Du die modification time sehen willst:
touch --date "2014-04-19" /tmp/start find /srv/www/vhosts/domain.de -type f -name "*.php" -newer /tmp/start \ -printf '%T+ %p\n' > /tmp/vhosts_2014-04-19.txt
Interessant ist auch die change time: %C+
Gruss, Chris