Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You could <code>cd</code> to the folder containing the PHP files and:</p> <pre><code>touch -d '30 August 2013' *.php </code></pre> <p>Or if it has sub folders with php files - search through them recursively:</p> <pre><code>find /path/to/your/php/ -exec touch -d '30 August 2013' *.php {} \; </code></pre> <p>the folder 'php' in the command above would be included.</p> <p><strong>Edit:</strong></p> <p>If you ONLY need to find/change EXACTLY files modified on 23 April 2013, you can use the <code>-mtime</code> parameter in your find command. </p> <ul> <li><p><code>-mtime +60</code> means you are looking for a file modified 60 days ago or more.</p></li> <li><p><code>-mtime -60</code> means less than 60 days.</p></li> <li><p><code>-mtime 60</code> If you skip <code>+</code> or <code>-</code> it means exactly 60 days.</p></li> </ul> <p>So modifying the command above like this:</p> <pre><code>find /path/to/your/php/ -mtime 127 -exec touch -d '30 August 2013' *.php {} \; </code></pre> <p>Where 127 is the exact amount of days since 23 April (if my quick head calculation is correct). Else you can change the number to the correct amount of days, or use the <code>+</code> or <code>-</code> as described above if it doesn't need to be 'that' exact.</p> <p>You can read more about the find commands -mtime parameter here: <a href="http://www.cyberciti.biz/faq/howto-finding-files-by-date/" rel="noreferrer">http://www.cyberciti.biz/faq/howto-finding-files-by-date/</a></p> <p>(yes I borrowed 3 lines from there)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload