Recursively delete .LCK files from directory.


/ Published in: Bash
Save to your folder(s)

Remove *.LCK for any other extension you want to remove.


Copy this code and paste it in your HTML
  1. find . -type f -name "*.LCK" -exec rm -f {} \;

URL: http://ubuntuforums.org/showthread.php?t=216069

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.