Posts by Markinho • 51 points
2 posts
- 
		2 votes1 answer200 viewsA: How to find unused files in a project?This should list for you the files not accessed or modified in the last 30 days: ls -l `find * -mtime +30` You can change the number of days by changing the "+30" of the example to the desired… 
- 
		3 votes1 answer631 views