Touch recursive without nasty surprises
10 dicembre 2007, 16:53 Shell , Tips & Tricks December 10, 2007, 16:53To the touch of a whole directory recursively without encountering the usual errors (file names containing spaces or other strange characters) is sufficient to run the command:
find . -print0 | xargs -0 touch














