Difference between revisions of "Find all backups for user"

From James Dooley's Wiki
Jump to: navigation, search
(Created page with "==Overview== Simple script to check /backup for cpanel backups with a user's name. ==Script== <code>[bash,n]find /backup -name <user> -exec ls -lah {} \;</code> ==What to chan...")
 
Line 1: Line 1:
 +
[[Category:One Liners]]
 
==Overview==
 
==Overview==
 
Simple script to check /backup for cpanel backups with a user's name.
 
Simple script to check /backup for cpanel backups with a user's name.

Revision as of 17:39, 17 February 2012

Overview

Simple script to check /backup for cpanel backups with a user's name.

Script

[bash,n]find /backup -name <user> -exec ls -lah {} \;

What to change