Dev License: This installation of WHMCS is running under a Development License and is not authorized to be used for production use. Please report any cases of abuse to abuse@whmcs.com

Linux Find and Delete Matching Files Print

  • 2

Commands that will all find *.deb and remove the file:

find . -name ?*.deb? -delete

find . -name ?*.deb? -print | xargs rm

find . -name ?*.deb? -exec rm -f \{\} \;

Source: http://kyleabaker.com/2008/10/19/linux-find-and-remove-matching-files/


Was this answer helpful?

« Back

Powered by WHMCompleteSolution