Remove a File From All Folders: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
(Created page with 'To remove a specific file from all folders from a Linux CLI <pre> find /path -name filename | xargs rm </pre> Category : Linux')
 
(No difference)

Latest revision as of 23:20, 20 February 2010

To remove a specific file from all folders from a Linux CLI

find /path -name filename | xargs rm